Unintuitive Julia result: selecting a row from a matrix

julia> x[1,:] # this returns a Vector, which is a column

julia> x[1,:]' # this traspose the Vector into a row-vector
1 Like