Delete a row in a structure that contains a certain word
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
AA
am 3 Aug. 2019
Beantwortet: Walter Roberson
am 3 Aug. 2019
Hi,
I have a 1×5897 struct array with fields. How do I delete the entire rows that contain the letters 'AA'.
3 Kommentare
Akzeptierte Antwort
Walter Roberson
am 3 Aug. 2019
mask = ismember({Random.Letters}, 'AA') ;
Random(mask) = [] ;
0 Kommentare
Weitere Antworten (0)
Siehe auch
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!