error using unique function
Mostrar comentarios más antiguos
s is a cell matrix (178000x9) I want to find the unique values of s in the first column. ID=unique(s(:,1));
I received the following error. Error using cell/unique (line 95) Input A must be a cell array of string
what could be the reason?
1 comentario
Sean de Wolski
el 26 de Jul. de 2012
If the first column is all non-numeric it would not be throwing that error. What is returned from:
iscellstr(s(:,1))
Respuesta aceptada
Más respuestas (1)
Wayne King
el 26 de Jul. de 2012
Editada: Wayne King
el 26 de Jul. de 2012
Is it a cell array of numeric values?
You can use cell2mat()
A = {1 5 9 ; 2 3 4; 2 4 5};
B = unique(cell2mat(A(:,1)));
1 comentario
Danielle Leblanc
el 26 de Jul. de 2012
Categorías
Más información sobre Cell Arrays en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!