Question: In MATLAB please, thank you General solution to linear set of equations Write a function GetSolution to calculate the general solution Ax-b for a linear
In MATLAB please, thank you



General solution to linear set of equations Write a function GetSolution to calculate the general solution Ax-b for a linear set of equations from a coeficient matrix A and a coefficient vector b. If the linear system does not have solution, a logical flag isConsistent should be set to true, and the solution vectors should be empty, else the logical flag isConsistent should be false. If a solution exists, the function GetSolution should calculate a particular solution vector by using the intrinsic function rref that implements the Gauss-Jordan algorithm and a homogeneous solution with the intrinsic function null to obtain a rational basis for the null space. For example: format rat >>A= [ 1 , 2, 3; 3, 2, 1; 0,1,-11: b= [ 14:10:91: xp,xh, isInconsistent - GeneralSolver(A,b) xp= 26/3 xh= 3x0 empty double matrix isInconsistent logical
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
