Re: [julia-users] terminology: vector, array, matrix

2014-12-16 Thread jgabriele382
On Monday, December 15, 2014 2:31:41 PM UTC-5, Andreas Noack wrote: > > 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 > Thanks, Andreas!

Re: [julia-users] terminology: vector, array, matrix

2014-12-15 Thread Andreas Noack
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 : > > Hi, > > I see that in Julia there are row vectors and column vectors. > > Is "vector" just another n

[julia-users] terminology: vector, array, matrix

2014-12-15 Thread jgabriele382
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 readme, I see Dict{Vector} a