"surf" overwrites axis properties

조회 수: 9 (최근 30일)
Danny Kumpf
Danny Kumpf 2020년 1월 7일
댓글: Danny Kumpf 2020년 1월 15일
I think I'm missing something simple here. I'm running this code:
fig = figure;
ax = axes('Parent',fig);
ax.DataAspectRatio = [1 1 1];
ax.XGrid = 'On';
ax.YGrid = 'On';
ax.ZGrid = 'On';
ylabel('y-axis');
zlabel('z-axis');
xlabel('x-axis');
view(3); % Here, the axes have equal aspect ratio and are labeled
[x, y, z] = sphere;
surf(ax, x, y, z); % when this line executes, the aspect ratio changes and the labels disappear
As indicated in the comments, the "surf" command seems to be overriding my axis properties for some reason. If I check the axis object, the properties are still there (ie, calling ax.DataAspectRatio will show [1 1 1], but on the viewable plot, the aspect ratio changes).
Thanks.
  댓글 수: 2
darova
darova 2020년 1월 7일
Danny Kumpf
Danny Kumpf 2020년 1월 7일
That seems to work, though I don't understand why. Do you know what's going on behind the scenes with the axis object to make it work like this?

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2020년 1월 7일

추가 답변 (1개)

Allen
Allen 2020년 1월 7일
Try reordering your properties so that they are assigned after you use the surf function.
fig = figure;
ax = axes('Parent',fig);
[x, y, z] = sphere;
surf(ax, x, y, z); % when this line executes, the aspect ratio changes and the labels disappear
% Assign axes properties after plot functions since they tend to refer to default properties upon first use.
ax.DataAspectRatio = [1 1 1];
ax.XGrid = 'On';
ax.YGrid = 'On';
ax.ZGrid = 'On';
ylabel('y-axis');
zlabel('z-axis');
xlabel('x-axis');
view(3); % Here, the axes have equal aspect ratio and are labeled

카테고리

Help CenterFile Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by