Effacer les filtres
Effacer les filtres

3D axes viewport orientation

1 vue (au cours des 30 derniers jours)
Danylo
Danylo le 13 Déc 2014
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):
How can I do this? Thank you!

Réponses (1)

Star Strider
Star Strider le 13 Déc 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')

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by