Please join our channel and subscribe to our YouTube for more videos
| Gauss Jordan |
Code-
clc;clear; disp("Gauss Jordan Method") A=[1 1 1; 10 1 -1; 6 -1 1] B=[9; 19; 13] if det(A)==0 then disp("Unique solution does not exist") else X=inv(A)*B disp(X,'Value of X,Y and Z are') end
Output-
"Gauss Jordan Method"
2.
3.
4.
"Value of X,Y and Z are"
Newton Raphson Method codeLagrange's Interpolation on Scilab
0 Comments
Thanks for comment ! we get touch with you soon.