MATLAB - Linear Algebra
What is wrong with this MATLAB code?
A = [1 2; 3 4]; b = [5; 6]; x = b\A;A = [1 2; 3 4]; b = [5; 6]; x = b\A;Ax = b as x = A\b. Here operands are reversed.b\A attempts to solve bx = A, which is invalid since b is a vector.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions