Effacer les filtres
Effacer les filtres

Remove/Refresh all Fields

2 vues (au cours des 30 derniers jours)
Dc215905
Dc215905 le 16 Mar 2020
Commenté : Dc215905 le 17 Mar 2020
I've created a data analysis GUI where you can load in several datasets and run a numbe of preprocessing steps.
I'd like to include a refresh buttton that clears all of fields. I've used :
handle = rmfield(handles, 'uniqueField'),
but is there away to just:
handles = rmfield(handles, 'ALL')
Thanks

Réponse acceptée

Rik
Rik le 16 Mar 2020
Yes, although you should consider changing your data structure.
handles = struct;%will do what you ask
You should store all data in just a single field of the guidata struct. That way you can simply overwrite that single field with an empty struct.
  1 commentaire
Dc215905
Dc215905 le 17 Mar 2020
Thank you!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by