Unique function cell array conflict
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposta accettata
Sean de Wolski
il 28 Giu 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 Commenti
Sean de Wolski
il 29 Giu 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)
Più risposte (2)
Jim Hokanson
il 1 Mag 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
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!