Borrar filtros
Borrar filtros

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

12 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

Mehmed Saad
Mehmed Saad el 7 de Mayo de 2020
Editada: Mehmed Saad el 7 de Mayo de 2020
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 comentarios
Mehmed Saad
Mehmed Saad el 2 de Mzo. de 2021
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 el 12 de Ag. de 2021
I think this issue may be caused by the MATLAB version. It works well in 2019a.

Iniciar sesión para comentar.

Más respuestas (1)

Cameron
Cameron el 22 de Nov. de 2023
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')

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by