{ 2 x1 + 3 x2 = 1
{ -2 x1 + x2 = 3.
Give all the MATLAB commands to define this linear system in
the format A x = b, with x = [x1 x2]^T, i.e.: what are the
commands to define A and b?
Answer:
A = [2 3; -2 1]
b = [1; 3]
x = A\b
x =
-1
1
Answer:
t = -1:0.01:1;
r = t.*sin(t);
polar(t,r)