Vector{Type} is an alias for Array{Type,1} and Matrix{Type} is an alias for
Array{Type,2}see http://julia.readthedocs.org/en/latest/manual/arrays/#implementation 2014-12-15 14:18 GMT-05:00 <[email protected]>: > > Hi, > > I see that in Julia there are row vectors and column vectors. > > Is "vector" just another name for column vector, which is an nx1 array? > > Is a row vector just a 1xn array? > > And a "matrix" just an n x m array? > > In the <https://github.com/johnmyleswhite/CSVReaders.jl> readme, I see > Dict{Vector} and Vector{Dict}. What exactly is "Vector" here referring to? > > Thanks! > -- John > >
