我想在2维以上的矩阵上使用exp函数。
我可以做到
exp(rand(2,2))
但是我不能这样做:
exp(rand(2,2,2))
我抛出以下错误:
ERROR: MethodError: no method matching exp(::Array{Float64,3})
Closest candidates are:
exp(::BigFloat) at mpfr.jl:618
exp(::Missing) at math.jl:1138
exp(::Complex{Float16}) at math.jl:1086
...
Stacktrace:
[1] top-level scope at REPL[19]:1
我可以完全重塑矩阵,但这是我要避免的事情。
谢谢。