在 Julia 的绘图函数中使用运算符
Using operators inside a plot function in Julia
我有以下数据框
我想绘制 Evar / (T^2 * L)
using Plots, DataFrames, CSV
@df data plot(:T, :Evar / (:T * T * :L) , group=:L, legend=nothing)
MethodError: no method matching *(::Vector{Float64}, ::Vector{Float64})
不幸的是,我不确定如何在绘图函数中使用运算符。
对于“/”运算符,它似乎可以工作,但如果我想使用“*”进行乘法运算,则会出现上述错误。
这是我所说的“/”工作的例子:
您需要向量化乘法和除法,因此这将是:
@df data plot(:T, :Evar ./ (:T .* :T .* :L) , group=:L, legend=nothing)
更简单的例子:
julia> a = [1,3,4];
julia> b = [4,5,6];
julia> a * b
ERROR: MethodError: no method matching *(::Vector{Int64}, ::Vector{Int64})
julia> a .* b
3-element Vector{Int64}:
4
15
24
不是 /
有效,因为 /
是为矢量定义的,但结果可能不是您想要的:
julia> c = a / b
3×3 Matrix{Float64}:
0.0519481 0.0649351 0.0779221
0.155844 0.194805 0.233766
0.207792 0.25974 0.311688
它只是返回矩阵,例如 c*b == a
,其中 *
是矩阵乘法。
我有以下数据框
我想绘制 Evar / (T^2 * L)
using Plots, DataFrames, CSV
@df data plot(:T, :Evar / (:T * T * :L) , group=:L, legend=nothing)
MethodError: no method matching *(::Vector{Float64}, ::Vector{Float64})
不幸的是,我不确定如何在绘图函数中使用运算符。
对于“/”运算符,它似乎可以工作,但如果我想使用“*”进行乘法运算,则会出现上述错误。
这是我所说的“/”工作的例子:
您需要向量化乘法和除法,因此这将是:
@df data plot(:T, :Evar ./ (:T .* :T .* :L) , group=:L, legend=nothing)
更简单的例子:
julia> a = [1,3,4];
julia> b = [4,5,6];
julia> a * b
ERROR: MethodError: no method matching *(::Vector{Int64}, ::Vector{Int64})
julia> a .* b
3-element Vector{Int64}:
4
15
24
不是 /
有效,因为 /
是为矢量定义的,但结果可能不是您想要的:
julia> c = a / b
3×3 Matrix{Float64}:
0.0519481 0.0649351 0.0779221
0.155844 0.194805 0.233766
0.207792 0.25974 0.311688
它只是返回矩阵,例如 c*b == a
,其中 *
是矩阵乘法。