Borrar filtros
Borrar filtros

array of numbers to chars in separate cells

1 visualización (últimos 30 días)
Tomas
Tomas el 30 de Abr. de 2012
Hi, I would like to know how to get separate cells with chars from number array:
from
F=[1 20 30 100];
to
E={'1','20','30','100'};

Respuesta aceptada

Honglei Chen
Honglei Chen el 30 de Abr. de 2012
E = cellfun(@num2str,mat2cell(F,1,ones(1,4)),'UniformOutput',false)

Más respuestas (2)

Honglei Chen
Honglei Chen el 30 de Abr. de 2012
E = mat2cell(F,1,ones(1,4)])

Tomas
Tomas el 30 de Abr. de 2012
OK, but i need those E values to be not in [ ], but in ' ', it means in char.

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by