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
The following works in MATLAB, and it would be nice to have the same functionality in julia. It seems easy to do by defining the appropriate cases for convert.
Julia Studo 0.3.2
julia> a = [1]
1-element Int64 Array:
1
julia> b = [1:4]
julia> b[2]=a
no method convert(Type{Int64},Array{Int64,1})
MATLAB
>> a = [1];
>> b = [1:4];
>> b(2) = a
b =
1 1 3 4
The text was updated successfully, but these errors were encountered:
The following works in MATLAB, and it would be nice to have the same functionality in julia. It seems easy to do by defining the appropriate cases for convert.
Julia Studo 0.3.2
MATLAB
The text was updated successfully, but these errors were encountered: