Hi,
I wanted to start using the plot function with simple examples. However, I did not manage to get any example running (except the example from the wiki).
Example 1:
x = sdpvar(2,1);
F = 0<= x <= 4;
plot(F,[x(1);x(2)])
Example 2:
x = sdpvar(3,1);
F = [x(2)^2 + x(1)^2 + x(3)^2 <= 10];
plot(F,[x(1);x(2)])
I do neither get plots nor error messages.
What am I doing wrong?