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
According to #3737 (comment), I think this should be possible:
julia> pts = [12;34]
2x2 Array{Int64,2}:1234
julia> Array{Array{Int64,2}}[pts]
ERROR: no method convert(Type{Array{Int64,2}}, Int64)
in copy! at abstractarray.jl:149in getindex at array.jl:121
The text was updated successfully, but these errors were encountered:
And I thought this was a way around it. Am I missing something?
julia>push!(Array{Array{Int,2}}[], pts)
ERROR: no method convert(Type{Array{Float64,2}}, Int64)
in copy! at abstractarray.jl:149in push! at array.jl:457
According to #3737 (comment), I think this should be possible:
The text was updated successfully, but these errors were encountered: