How to remove certain elements from a struct array
15 ビュー (過去 30 日間)
古いコメントを表示
Jorge Zorrilla Prieto
2020 年 5 月 17 日
コメント済み: Jorge Zorrilla Prieto
2020 年 5 月 17 日
I have the following struct array:
Now, I want to remove the rows whose "SNR" field value is less than 150 having only the struct array with the rows that are over that value. Is that possible?
0 件のコメント
採用された回答
Walter Roberson
2020 年 5 月 17 日
mask = [Configuracion.SNR] >= 150;
Configuracion = Configuracion(mask);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!