Use matlab backslash operator to output the solution of system
of equation.
Print the unknowns in console.
Equations are
16*b+17*j+5*f=11,
4*b+15*j+8*f=14
`Hey,
Note: Brother if you have any queries related the answer please do comment. I would be very happy to resolve all your queries.
Acf=[16,17,5;4,15,8];
bcf=[11;14];
xcf=Acf\bcf;
fprintf('b=%f\n',xcf(1))
fprintf('j=%f\n',xcf(2))
fprintf('f=%f\n',xcf(3))
Kindly revert for any queries
Thanks.
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in...