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


mat, matr, matc

mat(vector[,...])
matr(vector[,...])
:: 行ベクトルの並びから行列を生成する.
matc(vector[,...])
:: 列ベクトルの並びから行列を生成する.
return
行列
vector
配列またはリスト
[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 ]
参照
section newmat, matrix


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