3D axes viewport orientation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I am trying to change the viewpoint of my 3D graph as shown in the following picture (left is what I have now, right is what I want to have):
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146441/image.png)
How can I do this? Thank you!
0 comentarios
Respuestas (1)
Star Strider
el 13 de Dic. de 2014
The easiest way is just to plot it that way:
[X,Y] = meshgrid(-1:0.1:1);
Z = X.^2 + Y.^2;
figure(1)
surf(Y, Z, X)
xlabel('Y')
ylabel('Z')
zlabel('X')
0 comentarios
Ver también
Categorías
Más información sobre Surface and Mesh 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!