remove a struct field that its element value is less than specific 50
1 回表示 (過去 30 日間)
古いコメントを表示
Hi, I have 4x1 struct with 2 fields as shown:
i want to delete the one that has less faces and vertices for example here field number 4 i have tried this:
Faces = cellfun('length', {CClower.faces});
Vertices = cellfun('length', {CClower.vertices});
MinIdx = find(Faces <= 50);
but now how to select indexes that not equal to MinIdx that i extracted?
3 件のコメント
Stephen23
2018 年 10 月 4 日
"i need to remove the element that is smaller than 50 whatever is its location."
That is what my answer does.
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!