how delete empty fields in a struct
2 ビュー (過去 30 日間)
古いコメントを表示
Hi! I have a struct (attached) and I want to delete the empty field, how can I do?
0 件のコメント
採用された回答
Andrei Bobrov
2016 年 5 月 11 日
編集済み: Andrei Bobrov
2016 年 5 月 11 日
out = {t(~cellfun(@isempty,{t.places})).places};
t = cell2struct(out,{'places'},1);
or jast
t = t(~cellfun(@isempty,{t.places}));
その他の回答 (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!