You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it on purpose that values of complex or dual types are not shown? (But arrays of those element types are shown?)
MWE (v0.7):
using Parameters, DualNumbers
@with_kwstruct Para
a =0.0
b =0.0+ im
c =0.0+ ε
d =zeros(2) .+ im
e =zeros(2) .+ ε
endPara()
Output (added comments are mine):
julia>Para()
Para
a: Float64 0.0
b: Complex{Float64} # no value shown?
c: Dual{Float64} # no value shown?
d:Array{Complex{Float64}}((2,)) Complex{Float64}[0.0+1.0im, 0.0+1.0im]
e:Array{Dual{Float64}}((2,)) Dual{Float64}[0.0+1.0ɛ, 0.0+1.0ɛ]
The text was updated successfully, but these errors were encountered:
Is it on purpose that values of complex or dual types are not shown? (But arrays of those element types are shown?)
MWE (v0.7):
Output (added comments are mine):
The text was updated successfully, but these errors were encountered: