Axis Disappearing after Zooming in

6 ビュー (過去 30 日間)
N/A
N/A 2023 年 4 月 13 日
コメント済み: N/A 2023 年 4 月 13 日
Hi,
I plotted somthing and after using xlim and ylim for zooming out, axies disappeared. How can I solve the problem?
thanks,
  2 件のコメント
Walter Roberson
Walter Roberson 2023 年 4 月 13 日
Good question. It seems to have something to do with the view combined with something like camera position.
For example, if you
view([0 91])
then the x axes comes into sight.
N/A
N/A 2023 年 4 月 13 日
it doesn't work. I attached the Fig6.fig file... could you please help me the x and y axies come into sight?

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2023 年 4 月 13 日
Okay, what is happening is that your surface has a rectangular at z = 0, with the interesting data at negative z. The surface has been colored white in that area, and the FaceAlpha = 1 so it is opaque.
The rectangular plate at the top is hiding the axes. You can get a bunch of it back just by asking for the axes to be drawn on top.
fig = openfig('Fig6.fig');
ax = gca(fig);
ax.Layer = 'top';
  1 件のコメント
N/A
N/A 2023 年 4 月 13 日
Thank you very much it works

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLighting, Transparency, and Shading についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by