Clear Filters
Clear Filters

finding all the other elements of a cell vector apart from zeros and empties

1 view (last 30 days)
Dear all,
I want to find all the elements of a cell vector apart from zeros and empties Using the command
ismember(mm,setdiff(mm,'0' ))
I find all the elements apart from zeroes. But I want to find all the elements apart from zeroes AND empty cells. Note mm is a cell of dimension 1000 by 1
thanks
  1 Comment
Thomas
Thomas on 4 Jun 2012
can you post a small snipet of 'mm'. You say it is a cell but does it contain numbers and characters or just numbers..

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 4 Jun 2012
mm( ~ cellfun( @(C) isempty(C) || (ischar(C) && strcmp(C, '0')), mm ) )
  4 Comments
Walter Roberson
Walter Roberson on 4 Jun 2012
mm( ~ cellfun( @(C) isempty(C) || (ischar(C) && strcmp(C, '0')), mm ) & strcmp(mdata1(:,6),'b1') )

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!