Rotate Individual Letters in a String
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello! I wonder if there is a way to have the word SINE rotated 90% counter-clockwise and each of the letters 90% clockwise so that the letters stand normal on oneanother like:
E N I S
Thanks!
댓글 수: 0
채택된 답변
Jan
2012년 1월 24일
Does this help:
S = 'SINE';
C = cell(1, numel(S));
for i = 1:numel(S)
C{i} = S(i);
end
% >> C = {'E', 'N', 'I', 'S'}
text(0.5, 0.5, C);
? I'm still not sure, what you want to achieve.
추가 답변 (3개)
Dima
2012년 1월 23일
댓글 수: 4
Walter Roberson
2012년 1월 23일
char() with multiple single-character arguments turns out to do vertical cat anyhow.
참고 항목
카테고리
Help Center 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!