How to convert a vector of integers to a vector of characters?
Mostrar comentarios más antiguos
Hi - I have a vector of ints, typically 0/1, like this:
[0 0 0 0 1 0 0 0 0 1]
and I want to get this:
['0' '0' '0' '0' '1' '0' '0' '0' '0' '1']
But I cannot figure it out for the life of me. I'm sure it's simple. Thanks for your time and help.
Respuesta aceptada
Más respuestas (3)
Wayne King
el 9 de Feb. de 2013
Editada: Wayne King
el 9 de Feb. de 2013
A = [0 0 0 0 1 0 0 0 0 1];
B = num2str(A);
Now B is a vector of characters
Azzi Abdelmalek
el 9 de Feb. de 2013
Editada: Azzi Abdelmalek
el 9 de Feb. de 2013
a = [0 0 0 0 1 0 0 0 0 1];
y=arrayfun(@(x) cellstr(num2str(x)),a)
% To get any character
y{4} % for e.g
Instead of removing the spaces from the output of num2str, you can create string without spaces directly:
a = [0 0 0 0 1 0 0 0 0 1];
s = sprintf('%d', a);
Another fast but more strange method is:
s = char('0' + a);
Categorías
Más información sobre Data Type Conversion 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!