Solve the given system of equations using the Gauss-Jordan elimination method with MATLAB.
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can i solve this 4x4 equations using the Gauss-Jordan elimination with MATLAB/octave?

0 Kommentare
Antworten (1)
KSSV
am 22 Feb. 2023
Read about rref
A = [0.1 -2.5 1.2 -0.75 108 ;
2.4 1.5 -1.8 0.25 -81;
0.4 -3.2 1.6 -1.4 148.8;
1.6 1.2 -3.2 0.6 -143.2] ;
[R,p] = rref(A) ;
R(:,end)
% Check
A(:,1:4)*R(:,end)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Octave finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!