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.. :-(
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
Sum of diagonal of a square matrix
1327 Solvers
Flag largest magnitude swings as they occur
582 Solvers
216 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!