Borrar filtros
Borrar filtros

How to keep a certain axes unchanged

1 visualización (últimos 30 días)
Abdurrehman
Abdurrehman el 16 de Jul. de 2017
Comentada: Image Analyst el 16 de Jul. de 2017
I am using following statement to clear all axes in gui at once.
arrayfun (@cla,findall (0,'type','axes'));
The statement works well and clears all axes. But out of all axes I need to keep one axes not to be cleared as it displays logo. How to modify above statement so that said axes shouldn't be cleared.

Respuesta aceptada

Walter Roberson
Walter Roberson el 16 de Jul. de 2017
setdiff the results of the findall and the handles you want to keep.
  2 comentarios
Abdurrehman
Abdurrehman el 16 de Jul. de 2017
Hi, thanks for the answer setdiff returns "1x0 empty Axes array" because the respective axes is also the part of findall. Can you please give an example to solve this issue, thanks again
Walter Roberson
Walter Roberson el 16 de Jul. de 2017
>> a(1) = subplot(2,2,1); a(2) = subplot(2,2,2); a(3) = subplot(2,2,3); a(4) = subplot(2,2,4);
>> setdiff(findall (0,'type','axes'),a(2))
ans =
3×1 Axes array:
Axes
Axes
Axes
Perhaps you reversed the order of the parameters for setdiff() ?

Iniciar sesión para comentar.

Más respuestas (2)

Image Analyst
Image Analyst el 16 de Jul. de 2017
Since you probably have only a handful of known axes, just call cla on them separately. I mean, why complicate things???
% Clear axes 1, 2, 4, and 5, but not 3
cla(ax1,'reset')
cla(ax2,'reset')
cla(ax4,'reset')
cla(ax5,'reset')

Abdurrehman
Abdurrehman el 16 de Jul. de 2017
I have multiple axes can't write many statements. Instead want to manage in 1 or 2 statement (s)
  1 comentario
Image Analyst
Image Analyst el 16 de Jul. de 2017
If you have too many axes, either your desktop is cluttered with dozens upon dozens of windows, or if they are all on a single figure, the axes will be very tiny. Hopefully you actually only have like 9 or fewer and can use my suggestion because it's easy to understand. And hopefully one day you will be able to write long programs with many statements. If you do use Walter's solution using setdiff() and arrayfun(), be sure to document your code well to make it maintainable, because I think that method is less obvious to someone who comes along trying to follow your code, especially without comments and explanation. Sure it's compact but that comes at a price of not being obvious what it does. I mean if you were inheriting someone's code, which would you prefer to inherit and maintain?

Iniciar sesión para comentar.

Categorías

Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by