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
Would it be a good idea if arrays of length 1 are convertible to their nested type? i.e. to avoid errors like: 'convert' has no method matching convert(::Type{Float64}, ::Array{Float64,1})
Perhaps it could be quite a nice shortcut?
i.e.
x = Array(Float64,10,10,10)
y = ones(Float64,10,10,10)
x[1,1,1] = mean(y[:,1,1],1)
The text was updated successfully, but these errors were encountered:
Would it be a good idea if arrays of length 1 are convertible to their nested type? i.e. to avoid errors like:
'convert' has no method matching convert(::Type{Float64}, ::Array{Float64,1})
Perhaps it could be quite a nice shortcut?
i.e.
The text was updated successfully, but these errors were encountered: