Use matlab backslash operator to output the solution of system of equation.
Print the unknowns in console.
Equations are
7*a+12*b+10*u=11,
3*a+4*b+19*u=10,
14*a+3*b+12*u=17,
Code:
clc
clc
clear
syms a b u
eqns = [7*a + 12*b + 10*u == 11,
3*a + 4*b + 19*u == 10,
14*a + 3*b + 12*u == 17];
[A,b] = equationsToMatrix(eqns);
%a) using '\'
unknowns = A\b;
a = unknowns(1)
b = unknowns(2)
u = unknowns(3)
Output:

Use matlab backslash operator to output the solution of system of equation. Print the unknowns in...
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 20*b+14*g+5*u=6, 12*b+4*g+3*u=6, 11*b+18*g+18*u=12,
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 1*g+19*t+16*f=5, 19*g+4*t+12*f=17, 14*g+19*t+9*f=15,
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 1*g+19*t+16*f=5, 19*g+4*t+12*f=17, 14*g+19*t+9*f=15
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 8*a+1*b+18*j=8, 4*a+17*b+6*j=7, 17*a+18*b+15*j=19
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 20*n+8*z+13*m=9, 2*n+17*z+16*m=10, 11*n+19*z+16*m=7,
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 12*f+9*s+14*g=6, 14*f+13*s+13*g=14, 11*f+13*s+19*g=11,
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 4*u+3*g+13*l=13, 8*u+9*g+1*l=5, 8*u+2*g+12*l=12,
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 13*n+12*s+9*e=9, 19*n+7*s+19*e=7, 19*n+18*s+1*e=9,
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 3*n+9*l+4*w=12, 13*n+2*l+6*w=20, 16*n+6*l+9*w=14
Use matlab backslash operator to output the solution of system of equation. Print the unknowns in console. Equations are 12*i+19*j+5*z=5, 13*i+2*j+4*z=15, 16*i+6*j+5*z=6,