Register or Login to View the Solution or Ask a Question
Question : solve the following by Cramers rule in matlabx+2y-z=5-x -2y -3z=72x+y-z=-1Solution:%matlab program to solve x+2y-z=5, -x -2y -3z=7, 2x+y-z=-1 by Cramers ruleA = [1 2 -1;-1 -2 -3;2 1 -1]; B = [5; 7; -1]; A1 = [5 2…
This Question has been answered.
Please Subscribe to See Answer or To Get Homework Help
Register or Login to View the Solution or Ask a Question