Register or Login to View the Solution or Ask a Question
Question : how to solve following linear system in matlabSolution :Given linear system\[x+0.5y+0.75z=2,\]\[ 0.75x+0.5y+z=2.5,\]\[ 0.5x+0.5y=0.25\]We can solve this linear system in matlab by writing following lines of code syms x y zeqn1 = x+0.5y+0.75z==2;eqn2 = 0.75x+0.5y+z==2.5;eqn3 = 0.5x+0.5y==0.25;sol = solve([eqn1,…
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