Surf command to plot simple surface
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bobby Fischer
el 2 de Oct. de 2021
Editada: Ravi Narasimhan
el 2 de Oct. de 2021
Hi
what is happening here:
close all
x = -1 : 0.1 : 5;
y = x;
[X, Y] = meshgrid(x,y);
Z = 2*X - X*Y + 2*Y;
surf(X, Y, Z)
xlabel('Ox')
ylabel('Oy')
zlabel('Oz')
0 comentarios
Respuesta aceptada
Ravi Narasimhan
el 2 de Oct. de 2021
Editada: Ravi Narasimhan
el 2 de Oct. de 2021
Did you intend to do an element-by-element multiply on X and Y?
close all
x = -1 : 0.1 : 5;
y = x;
[X, Y] = meshgrid(x,y);
Z = 2*X - X.*Y + 2*Y; % Note the .*
surf(X, Y, Z)
xlabel('Ox')
ylabel('Oy')
zlabel('Oz')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Lighting, Transparency, and Shading 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!