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


omatrix_kernel

omatrix_kernel(A)
:: omatrix_kernelは行列 A の kernel の基底を求めます.
return
リスト
A
行列 or リスト
[383] omatrix_kernel([[1,2,3,4],[1,0,1,0]]);
[2,[[1,0,-1,1/2],[0,1,0,-1/2]]]

[384] omatrix_kernel([[1,2,3,4],[1,0,1,0],[0,0,0,1]]);
[1,[[1,1,-1,0]]]


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