row-echelon matrix form (not reduced)
289 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
what is row-echelon matrix form (not reduced) in matlab?
0 Commenti
Risposte (2)
Nagabhushan SN
il 9 Ott 2018
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 Commenti
Ivan van der Kroon
il 31 Mag 2011
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 Commenti
Carol Hurwitz
il 20 Lug 2018
yes ,it would be a good idea, especially since Lay's Linear Algebra seems to prefer Matlab
Charles Daniels
il 23 Set 2020
it should be implemented the same way TI does in their calculators, for consistency
Vedere anche
Categorie
Scopri di più su Linear Algebra in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!