Borrar filtros
Borrar filtros

Alternative to cell2mat

8 visualizaciones (últimos 30 días)
RDG
RDG el 4 de Dic. de 2011
I have a cell array, f with contents in it.
Is there a way to sort the contents of the cell array using
[B,IX]=sort(f) without having to use cell2mat?
I would like to evaluate it directly.
  1 comentario
Walter Roberson
Walter Roberson el 4 de Dic. de 2011
Hmmm... what kind of contents? It is, for example, difficult to sort 'hello' against [18.2 13.39 9.44]

Iniciar sesión para comentar.

Respuestas (2)

Fangjun Jiang
Fangjun Jiang el 4 de Dic. de 2011
If f is a cell array of strings, you can run sort(f) directly. If you f contains numerical data, what do you try to sort of the size of data is different. You need to provide more details. And what is wrong with using cell2mat()? What is the rational for "evaluate it directly"?
  5 comentarios
Fangjun Jiang
Fangjun Jiang el 4 de Dic. de 2011
Should be all low-case 'c'. Smart phone is too smart.
Jan
Jan el 4 de Dic. de 2011
In this case [C{:}] is faster than CELL2MAT.

Iniciar sesión para comentar.


Walter Roberson
Walter Roberson el 4 de Dic. de 2011
[IX,IX]=sortrows(cell2mat(f));
newcell = f(IX);
No mat2cell() required.

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by