MATLAB: Extract data from cell

cell arraystruct

I have a cell array with 60000 x 1, in each cell i have some structures 1 x 1 or 0 x 0, I need to extract the structures 1 x 1, how can I do this?

Best Answer

YourCell(~cellfun(@isempty,YourCell))