Re-write the following system of equations in matrix form:
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:14| Question number:33.14
All Answers
total answers (1)
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:14| Question number:33.14
total answers (1)
>> A = [4 -1 0 3;
-2 3 1 -5;
1 1 -1 2;
3 2 -4 0];
>> b = [10 -3 2 4]';
>> x = inv(A)*b
need an explanation for this answer? contact us directly to get an explanation for this answer