how to delete field in struct in loop?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Sagar Dhage
il 11 Set 2014
Risposto: Andrei Bobrov
il 11 Set 2014
In have struct A having fields A1(2x1), A2(2x1), A3(12x1) ....A100(23x1). I want to delete fields whose size is (2x1). how to delete it
0 Commenti
Risposta accettata
Andrei Bobrov
il 11 Set 2014
n1 = fieldnames(A);
Aout = rmfield(A,n1(cellfun(@numel,struct2cell(A)) == 2));
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Structures 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!