Gaussian Elimination (LU or not) or Jacobian? How to write mfile???
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi all,
Does anyone have an mfile that utilizes either gaussian or jacobian or LU factorization to solve multiple variable linear equations?
Thanks in advance :)
0 Kommentare
Antworten (1)
Jan
am 19 Mär. 2013
x = A\b; % This is solved implicitely by:
[L,U] = lu(A);
y = L\b;
x = U\y;
If you want something else, please post more details.
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!