% Organize the x,y,z coefficients into a 3x3 matrix
A = [2, -3, 4; 1, 4, 1; -2, 3, 4];
% Organize the constants into a 3x1 vector
b = [5; 10; 0];
% Note the system is in now in the form At = b where t = [x; y; z]
% Solve for t using gaussian elimination
t = A\b;
A = [2, -3, 4; 1, 4, 1; -2, 3, 4];
% Organize the constants into a 3x1 vector
b = [5; 10; 0];
% Note the system is in now in the form At = b where t = [x; y; z]
% Solve for t using gaussian elimination
t = A\b;