I there a way in julia to write similar to the below in Matlab?
L = [1 2 3;...
4 5 6;...
7 8 9];
I there a way in julia to write similar to the below in Matlab?
L = [1 2 3;...
4 5 6;...
7 8 9];
Yeah, just don’t add the ...
L = [1 2 3;
4 5 6;
7 8 9];
Very cool, thank you!
Just add line breaks:
julia> L = [1 2 3
4 5 6
7 8 9]
3×3 Matrix{Int64}:
1 2 3
4 5 6
7 8 9