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.. :-(
932 Solvers
Project Euler: Problem 5, Smallest multiple
408 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
327 Solvers
Back to basics 12 - Input Arguments
527 Solvers
758 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!