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
Using integer vectors to construct a Toeplitz matrix results in Float32 eltypes. Not at all what I was expecting. I can of course do Toeplitz{Int}([1,2,3], [1,2,3]), but still...
julia v1.3> a = Toeplitz([1,2,3], [1,2,3])
3×3 Toeplitz{Float32,Complex{Float32}}:
1.0 2.0 3.0
2.0 1.0 2.0
3.0 2.0 1.0
julia v1.3> eltype(a)
Float32
The text was updated successfully, but these errors were encountered:
Using integer vectors to construct a Toeplitz matrix results in Float32 eltypes. Not at all what I was expecting. I can of course do Toeplitz{Int}([1,2,3], [1,2,3]), but still...
The text was updated successfully, but these errors were encountered: