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