Clear Filters
Clear Filters

echolen form of matrix in the matlab

5 views (last 30 days)
hi,
I want to find echolen form in the matlab.
I use 'rref' but this give me reduce echolen form. How can I find echolen form in matlab not reduce echolen form.

Accepted Answer

Ameer Hamza
Ameer Hamza on 17 Apr 2020
The echelon of a matrix is not unique. You can write infinite many of them. One of them can be written using lu factorization.
[~,echelon_form] = lu(A); % A is the input matrix

More Answers (0)

Categories

Find more on Operating on Diagonal Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!