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.. :-(
Determine whether a vector is monotonically increasing
12635 Solvers
289 Solvers
Back to basics 9 - Indexed References
397 Solvers
Remove the two elements next to NaN value
457 Solvers
258 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!