Unique function cell array conflict

5 views (last 30 days)
Matlab is giving me a seemingly conflicting error message. It says that the 'rows' flag is ignored since NewParts is a cell array, however it says that it cannot perform the unique function since NewParts is not a cell array. whos says that NewParts is a cell array. Are there any ways to resolve this conflict?
>> Classification
Warning: 'rows' flag is ignored for cell arrays.
> In cell.unique at 31
In Classification at 103
??? Error using ==> cell.unique at 45
Input must be a cell array of strings.
Error in ==> Classification at 103
UNIQUE_NewParts = unique(NewParts,'rows');
whos
NewParts 2122x21 3330030 cell

Accepted Answer

Sean de Wolski
Sean de Wolski on 28 Jun 2011
It's a cell array but not a cell array of strings.
unique({magic(2),magic(2),rand(2)})
Fail, your error message.
unique({'hello world','what''s up','hello world'})
pass.
  11 Comments
Brian
Brian on 29 Jun 2011
Is your [NaN] actually Not A Number? Or is it a string or something? The real problem is that it comes from a blank cell in Excel.
Sean de Wolski
Sean de Wolski on 29 Jun 2011
yes, my nan is _actually_ a nan. I convert it to a string that says nan but it is no longer a nan, it's a string (so unique can be called)

Sign in to comment.

More Answers (2)

Brian
Brian on 28 Jun 2011
Thanks for your help Sean de. Since the first column was driving the unique parts, I used this solution.
[B,I,J] = unique(NewParts(:,1));
UNIQUE_NewParts = NewParts(I,:)

Jim Hokanson
Jim Hokanson on 1 May 2013
I just stumbled upon this weird behavior recently. See: http://www.mathworks.com/matlabcentral/answers/74169-unique-rows-cell-array-ignored
In summary, a warning is thrown saying that unique will not work with the rows option, but then it proceeds perform unique on all elements anyways, at which point in time it fails due to type inconsistencies.
For others finding this answer, I've submitted a more general FEX submission a few years ago to address this problem: 25917: Unique Rows for a Cell Array

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!