Error using contour: Z must be at least a 2x2 matrix.

6 Ansichten (letzte 30 Tage)
geometry geometry
geometry geometry am 13 Mai 2017
Kommentiert: Steven Lord am 13 Mai 2017
What's the problem with the following code?
f=input('enter function: ','s');
f = str2func(['@(x,y)' vectorize(f)]);
[X,Y]=meshgrid(-10:.5:10);
contour(X,Y,f(x,y));
When I enter sin(x)+cos(y) the following error occurs:
Z must be at least a 2x2 matrix.

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 13 Mai 2017
Your typo
Should be:
contour(X,Y,f(X,Y));
  2 Kommentare
geometry geometry
geometry geometry am 13 Mai 2017
What a bad typo... thanks
is there a way to make two figures (two windows) in one code ?
for example one figure with mesh and the other with contour.
Steven Lord
Steven Lord am 13 Mai 2017
Use the figure function to open a new figure window, or use subplot to create two or more separate axes in one figure window.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Contour Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by