Clearing a structure variable

Hello
If I have the following structure:
a.h1 = 800; a.caseid = 'HM';
How do I clear a.h1?
Thanks

 Risposta accettata

a.h1 = 800; a.caseid = 'HM';
clear a.h1
a.h1 = []
remove field 'h1'
rmfield(a,'h1')

Più risposte (1)

George
George il 9 Set 2011

0 voti

Thanks Andrei! I wasn't aware of the rmfield function.
George

Community Treasure Hunt

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

Start Hunting!

Translated by