Go to the first, previous, next, last section, table of contents.


mat, matr, matc

mat(vector[,...])
matr(vector[,...])
:: Creates a new matrix by list of row vectors.
matc(vector[,...])
:: Creates a new matrix by list of column vectors.
return
matrix
vector
array or list
[0] matr([1,2,3],[4,5,6],[7,8]);
[ 1 2 3 ]
[ 4 5 6 ]
[ 7 8 0 ]
[1] matc([1,2,3],[4,5,6],[7,8]);
[ 1 4 7 ]
[ 2 5 8 ]
[ 3 6 0 ]
References
section newmat, matrix


Go to the first, previous, next, last section, table of contents.