Solve a linear set of equations as described in the following link: http://www.people.virginia.edu/~teh1m/cody/linsolv1.pdf
function [ x ] = my_lin_solv( A, b )
[L,U]=lu(A);
d=inv(L)*b;
x=inv(U)*d;
end
Which values occur exactly three times?
3306 Solvers
239 Solvers
Back to basics 16 - byte order
149 Solvers
Possible Outcomes of American Roulette
61 Solvers
How long do each of the stages of the rocket take to burn?
63 Solvers