3D axes viewport orientation

1 回表示 (過去 30 日間)
Danylo
Danylo 2014 年 12 月 13 日
回答済み: Star Strider 2014 年 12 月 13 日
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!

回答 (1 件)

Star Strider
Star Strider 2014 年 12 月 13 日
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')

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by