How to solve the pivoting matrix for row reduction?
3 ビュー (過去 30 日間)
古いコメントを表示
Suppose A is singular and B is the row echelon form for A, we have a pivoting matrix M such that M*A=B, is there an easy command to find M? Thanks!
0 件のコメント
回答 (1 件)
Prasanna Konyala
2022 年 1 月 26 日
Given a singular matrix (A) and its row echelon form (B), pivoting matrix (M) can be computed by right matrix division,
ie, M = A/B.
If the echelon matrix is not given, you can use "rref" function to compute the reduced echelon form of the matrix.Since reduced echelon form is also an echelon form it can be used to compute the pivoting matrix.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!