How to automatically delete empty cell arrays generated from a script

2 次查看(过去 30 天)
Hey, so I have a script that filters through a large excel spreadsheet and sorts data based on criteria. It returns around 17 files, with each cell being an embedded matrix. However, some of the files are completely empty due to the fact that nothing may fit the certain criteria. How do I code to automatically delete every empty cell array generated?

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2015-7-21
编辑:Azzi Abdelmalek 2015-7-21
v={2 3 [] 5}
idx=cellfun(@isempty,v)
v(idx)=[]

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by