Gaussian Elimination (LU or not) or Jacobian? How to write mfile???

4 次查看(过去 30 天)
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 :)

回答(1 个)

Jan
Jan 2013-3-19
Yes. It is builtin in Matlab. According to the documentation of lu:
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.

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by