How to get rid of 3D coordinate system symbol/object from pdegplot output.

12 ビュー (過去 30 日間)
Manoj Dhiman
Manoj Dhiman 2020 年 5 月 7 日
回答済み: Cameron 2023 年 11 月 22 日
I need to import and plot a few .stl models in a single figure. I am able to do so using pdegplot and hold on commands
model = createpde;
importGeometry(model,'./FullModelBase2.stl'); % binary model files available in attached zipped folder
pdegplot(model,'FaceLabels','off')
hold on;
model2 = createpde;
importGeometry(model2,'./FullModelBase1.stl');% binary model file
pdegplot(model2,'FaceLabels','off'); hold off;
but with each plot the basis of 3D coordinate system is also displayed as shown in figure. Laborius and difficult way is to delete them by manual selection and delete key. I am not able to find any property name associated with it, which can be used in script to automate this task. Is there any alternate way to do so? I have attached the zip file containing .stl files that can be used to try.

採用された回答

Mehmed Saad
Mehmed Saad 2020 年 5 月 7 日
編集済み: Mehmed Saad 2020 年 5 月 7 日
b=findobj(gca,'Type','Quiver');
Now b has the property of both Quiver. set there visibilty to off or whatever you want (use set for that purpose)
It still has the text x y z
c=findobj(gca,'Type','text');set(c,'String','');
But it will also remove any other text type you have in figure. so
findobj(gca,'String','x','-or','String','y','-or','String','z')
will give you object with string equal to x or y or z
  5 件のコメント
Mehmed Saad
Mehmed Saad 2021 年 3 月 2 日
i dont know why it is not working on 2020a and 2020b (it is not considering Text as object). Just set the visibility of Text object manually
a = gca;
disp(a.Children)
and change the visibility of text object manually to 'off'
Jibiao Chen
Jibiao Chen 2021 年 8 月 12 日
I think this issue may be caused by the MATLAB version. It works well in 2019a.

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

その他の回答 (1 件)

Cameron
Cameron 2023 年 11 月 22 日
In Matlab 2022b, you can remove the quiver and axis labels with this method:
% Find the quiver object
originQuiver = findobj(gca,'Type','Quiver');
% Turn off the visilility of the quiver
set(originQuiver,'Visible','off');
% Turn off the visilibty of the text on the middle layer (x,y,z labels)
set(findall(gca,'Layer','Middle'),'Visible','Off')

カテゴリ

Help Center および File ExchangeGeneral PDEs についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by