Azzera filtri
Azzera filtri

How to keep a certain axes unchanged

1 visualizzazione (ultimi 30 giorni)
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.

Risposta accettata

Walter Roberson
Walter Roberson il 16 Lug 2017
setdiff the results of the findall and the handles you want to keep.
  2 Commenti
Abdurrehman
Abdurrehman il 16 Lug 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 il 16 Lug 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() ?

Accedi per commentare.

Più risposte (2)

Image Analyst
Image Analyst il 16 Lug 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 il 16 Lug 2017
I have multiple axes can't write many statements. Instead want to manage in 1 or 2 statement (s)
  1 Commento
Image Analyst
Image Analyst il 16 Lug 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?

Accedi per commentare.

Categorie

Scopri di più su Specifying Target for Graphics Output in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by