row-echelon matrix form (not reduced)
131 ビュー (過去 30 日間)
古いコメントを表示
what is row-echelon matrix form (not reduced) in matlab?
0 件のコメント
回答 (2 件)
Nagabhushan SN
2018 年 10 月 9 日
lu(A)
performs LU factorization of a matrix. So, you can get upper triangular matrix from there. Not sure though if it performs Gauss reduction
[L,U,P] = lu(A);
2 件のコメント
Ivan van der Kroon
2011 年 5 月 31 日
With rref you will produce the reduced row echelon form, see
doc rref
But a non-reduced form is not unique. See for instance wikipedia: http://en.wikipedia.org/wiki/Gaussian_elimination. You can multiply individual rows with a scalar and/or add rows to other rows. It is in echelon form as long as it is upper-triangular.
3 件のコメント
Carol Hurwitz
2018 年 7 月 20 日
yes ,it would be a good idea, especially since Lay's Linear Algebra seems to prefer Matlab
Charles Daniels
2020 年 9 月 23 日
it should be implemented the same way TI does in their calculators, for consistency
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!