構造体から欠損データを削除する
显示 更早的评论
下記のような空([])の値を含む構造体Aから、空のフィールドを取り除いた構造体Bを作成したいです。
どのようにすれば、よろしいでしょうか

回答(1 个)
【類似の質問】
- how delete empty fields in a struct
- How to remove empty struct fields [ ] from a group a struct fields ?
A = struct('a',"abc",'b',"def",'c',[])
fn = fieldnames(A);
B = rmfield(A, fn(cellfun(@(c) isempty(A.(c)), fn)))
类别
在 帮助中心 和 File Exchange 中查找有关 構造体 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!