function [ x ] = my_lin_solv( A, b )
[L,U]=lu(A);
d=inv(L)*b;
x=inv(U)*d;
end
The link to the PDF is broken.. :-(
3098 Solvers
1846 Solvers
Back to basics 19 - character types
226 Solvers
Back to basics 22 - Rotate a matrix
768 Solvers
209 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!