MATLAB code for LU decomposition of an arbitrary matrix.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
how do i make a code for LU decomposition of an arbitrary matrix with out using inv( )
function or \ ?? The code must display L, U and L*U matrices. The code must accept a matrix as
an input. The code must generate the following error message if the input is not a square matrix:
“The input matrix must be square.”
im trying to make a code for these problems.
10x1+2x2-x3=27
-3x1-6x2+2x3=-61.5
x1+x2+5x3=-21.5
0 Kommentare
Antworten (1)
Ameer Hamza
am 8 Mai 2020
Bearbeitet: Ameer Hamza
am 8 Mai 2020
"with out using inv( ) function or \"
If you want to write you own code from scratch, then study the algorithm and code in these FEX submissions:
0 Kommentare
Siehe auch
Kategorien
Mehr zu Linear Algebra finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!