Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- clc
- A = [1,2,3;2,1,3;3,2,1];
- b = [1;2;0];
- %x1 = A^(-1)*b
- %x2 = inv(A)*b
- %x3 = A\b
- %cramer(A,b)
- [A,b,result]=gauss(A,b)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement