MATLAB: Manipulation of a cell array-

cellcell arraycell arrays

I have a cell array where some cells are empty, some are with numbers and some are with strings and chars.
I want to find out which ones are empty- is there a better way then a double loop with
isempty(cell_array{i,j}) ?

Best Answer

Cell_array = {1,[],magic(2);'stirng',[],[]}
cellfun('isempty',Cell_array)