필터 지우기
필터 지우기

view([0 90]) reset by axis?

조회 수: 7 (최근 30일)
Peter Fraser
Peter Fraser 2017년 2월 4일
댓글: Peter Fraser 2017년 2월 7일
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
Ankitha Kollegal Arjun 2017년 2월 7일
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