How to disable red orientation indicator in pdeplot3d?

10 ビュー (過去 30 日間)
Jonas Allgeier
Jonas Allgeier 2019 年 9 月 30 日
コメント済み: mohammad mohseni 2022 年 7 月 8 日
When using pdeplot3d (https://de.mathworks.com/help/pde/ug/pdeplot3d.html), the function automatically adds an indicator showing the orientation of the coordinate system (see bottom left of this example image). While this is nice for intermediate evaluations, it is not suitable for final plotting in my case. I want to disable it or at least be able to modify its appearance. How can I do that?

採用された回答

Raunak Gupta
Raunak Gupta 2019 年 10 月 4 日
Hi,
After searching through the properties of the object plotted through pdeplot3D, the graphics object responsible for the red orientation indicator is quiver and Text. If it is required to remove the orientation object you may use following code.
delete(findobj(gca,'type','Text'));
delete(findobj(gca,'type','Quiver'));
This will remove the Text and Quiver object from the current axes on which the Surface mesh is plotted.
  4 件のコメント
Daniel Ledwon
Daniel Ledwon 2021 年 4 月 23 日
I have the same problem in Matlab R2021a. This solution worked fine in R2019a, but after update the x, y and z labels are unremovable even with 'Edit Plot' and 'Property Inspector' of the Figure.
mohammad mohseni
mohammad mohseni 2022 年 7 月 8 日
thanks, it works well

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

その他の回答 (0 件)

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by