How do I plot a contour map in Matlab?

>> x=-6:0.001:6; >> y=-6:0.001:6; >> [X,Y]=meshgrid(x,y); >> phi=x.*y-y; >> contour(x,y,phi) Error using contour (line 48) Z must be at least a 2x2 matrix.

 Accepted Answer

madhan ravi
madhan ravi on 10 Sep 2018
Edited: madhan ravi on 10 Sep 2018
EDITED
x=linspace(-6,6,1000);
y=x;
[X,Y]=meshgrid(x,y)
phi=X.*Y-Y
contour(X,Y,phi)

5 Comments

If it works please accept the answer.
Matlab froze when I typed this in, it hasn't worked yet.
madhan ravi
madhan ravi on 10 Sep 2018
Edited: madhan ravi on 10 Sep 2018
Now try the edited code it worked for me.
did it work @cstibbards?
Not yet, but I think its an issue with my computer running Matlab, not the code. Thanks.

Sign in to comment.

More Answers (0)

Categories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!