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.

 Risposta accettata

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

5 Commenti

If it works please accept the answer.
Matlab froze when I typed this in, it hasn't worked yet.
madhan ravi
madhan ravi il 10 Set 2018
Modificato: madhan ravi il 10 Set 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.

Accedi per commentare.

Più risposte (0)

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by