view([0 90]) reset by axis?

5 次查看(过去 30 天)
I have a 3D plot that I sometimes want to view in 2D. "view([0 90])" works as expected, but a following "axis" command will reset the view direction to the default. If I change the command order it works (a fine workaround). I can follow either "view([1 90])" or "view([-1 90])" with an "axis" command, and it works as expected. What is happening?
[X,Y,Z] = peaks(25);
figure
surf(X,Y,Z);
view([0 90])
axis([-3 3 -3 3 -10 10]);
[az el] = view
gives az = -37.5, el=30

采纳的回答

Ankitha Kollegal Arjun
This is expected behavior. When using the 'surf' command with the 'view' command and axis limits, axes view of the figure tends to depend on the order in which these commands are issued. So, as you suggested, the right way of doing things is to use the view command after the axes limiting is done.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Properties 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by