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.

 Réponse acceptée

madhan ravi
madhan ravi le 10 Sep 2018
Modifié(e) : madhan ravi le 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 commentaires

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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by