array of strings from an array of integers
이전 댓글 표시
Hi if I have an array of integers like this:
A=[123 456 789]
How do I get an array of strings, say named B, such that:
BB(1) = 123 (this is string 1) BB(2) = 456 (this is string 2) BB(3) = 789 (this is string 3)
What I am trying to do is use integer values as labels for my xtick labels, and cannot figure out how to do it. Thank you.
채택된 답변
추가 답변 (2개)
If you're using a release that supports the string array (which did not exist when the original question was asked) use string.
A = randi(999, 1, 5)
plot(1:5, 1:5, 'o-')
xticks(1:5)
xticklabels(string(A))
댓글 수: 1
Walter Roberson
2021년 2월 12일
xticklabels() as a function did not exist when the question was originally asked either ;-)
A = randi(999, 1, 5)
plot(1:5, 1:5, 'o-')
xticks(1:5)
xticklabels(compose('%d',A)) %needs R2016b or later
yticklabels(sprintfc('%d', A)) %undocumented
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

