Error using contour: Z must be at least a 2x2 matrix.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
geometry geometry
el 13 de Mayo de 2017
Comentada: Steven Lord
el 13 de Mayo de 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.
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 13 de Mayo de 2017
Your typo
Should be:
contour(X,Y,f(X,Y));
2 comentarios
Steven Lord
el 13 de Mayo de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Contour Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!