how delete empty fields in a struct
3 次查看(过去 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!