In: Computer Science
Use matlab backslash operator to output the solution of system of equation.
Print the unknowns in console.
clc
clear all
close all
A=input('Enter the coefficient matrix: ');
b=input('Enter a column vector i.e. RHS: ');
disp('The solution is');
x=A\b