array of ints to cell array of strings?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I was wondering what is the best way to convert an array of integers to a cell array of strings?
Thanks.
0 comentarios
Respuesta aceptada
Fangjun Jiang
el 14 de Oct. de 2011
a=magic(5)
b=mat2cell(a,ones(size(a,1),1),ones(size(a,2),1))
c=cellfun(@num2str,b,'uni',false)
0 comentarios
Más respuestas (0)
Ver también
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!