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


f_res.submatrix

f_res.submatrix( Matrix )
:: 引数である行列の rank を持つ部分行列を返す.
return
行列
Matrix
行列
オプション
rowidx
配列
colidx
配列
p
素数
sub
リスト
[0] M = newmat( 3, 3, [[1,0,0],[0,a,0],[0,b,0]] );
[ 1 0 0 ]
[ 0 a 0 ]
[ 0 b 0 ]
[1] f_res.submatrix( M );
[ 1 0 ]
[ 0 a ]
[2] f_res.submatrix( M | rowidx=ltov([0,2,1]) );
[ 1 0 ]
[ 0 b ]


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