Solve a linear set of equations as described in the following link: http://www.people.virginia.edu/~teh1m/cody/linsolv1.pdf
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers77
Suggested Problems
-
197 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2828 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
557 Solvers
-
Getting the indices from a vector
11794 Solvers
-
988 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
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.. :-(