Filter löschen
Filter löschen

how to delete field in struct in loop?

2 Ansichten (letzte 30 Tage)
Sagar Dhage
Sagar Dhage am 11 Sep. 2014
Beantwortet: Andrei Bobrov am 11 Sep. 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

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 11 Sep. 2014
n1 = fieldnames(A);
Aout = rmfield(A,n1(cellfun(@numel,struct2cell(A)) == 2));

Weitere Antworten (0)

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by