Filter löschen
Filter löschen

How to automatically delete empty cell arrays generated from a script

2 Ansichten (letzte 30 Tage)
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?

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 21 Jul. 2015
Bearbeitet: Azzi Abdelmalek am 21 Jul. 2015
v={2 3 [] 5}
idx=cellfun(@isempty,v)
v(idx)=[]
  2 Kommentare
xander fong
xander fong am 21 Jul. 2015
the last part doesn't delete it, it just makes it empty?
James Tursa
James Tursa am 21 Jul. 2015
The last part deletes it ... it is a special syntax that MATLAB uses for deleting elements.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by