필터 지우기
필터 지우기

How to convert a vector of integers to a vector of characters?

조회 수: 9 (최근 30일)
Michael
Michael 2013년 2월 9일
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.

채택된 답변

James Tursa
James Tursa 2013년 2월 10일
Another method for single digits:
A = [0 0 0 0 1 0 0 0 0 1];
B = char(A+'0');

추가 답변 (3개)

Wayne King
Wayne King 2013년 2월 9일
편집: Wayne King 2013년 2월 9일
A = [0 0 0 0 1 0 0 0 0 1];
B = num2str(A);
Now B is a vector of characters
  댓글 수: 2
Michael
Michael 2013년 2월 9일
Hi Wayne -- I knew of num2str and tried that, but it turns out you're right. But what I figured out was that it was the extra spaces in the result of num2str that was throwing me off. i.e. num2str([0 0 0 0 0]) = '0 0 0 0 0', which is length 9 or something (but not 5). I removed the spaces from the result of num2str and it worked great. Thanks for the help.

댓글을 달려면 로그인하십시오.


Azzi Abdelmalek
Azzi Abdelmalek 2013년 2월 9일
편집: Azzi Abdelmalek 2013년 2월 9일
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

Jan
Jan 2013년 2월 10일
편집: Jan 2013년 2월 10일
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);

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by