rref and rank,transform matrix
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
for example A=[1 1 1; 2 3 4; 2 3 2] =>(row2 -2 row1;row3- 2 row 1) A=[1 1 1; 0 1 2; 0 1 0]=>(row3-row2)A=[1 1 1;0 1 2;0 0 -2];inputA=[1 1 1; 2 3 4; 2 3 2] and output [1 1 1;0 1 2;0 0 -2]; rankA = 3;as A is a random matrix;my question what is original code about rref and rank;
2 件のコメント
John D'Errico
2017 年 12 月 11 日
Do you want someone to provide the code for rref and rank? Hint: do this at the command line, and the code for those two functions will be revealed.
type rref
type rank
An Chan
2017 年 12 月 12 日
回答 (0 件)
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!