how delete empty fields in a struct

5 次查看(过去 30 天)
Hi! I have a struct (attached) and I want to delete the empty field, how can I do?

采纳的回答

Andrei Bobrov
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 CenterFile Exchange 中查找有关 Structures 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by