Rotate Individual Letters in a String
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
Jan
el 24 de En. de 2012
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.
Más respuestas (3)
Dima
el 23 de En. de 2012
4 comentarios
Walter Roberson
el 23 de En. de 2012
char() with multiple single-character arguments turns out to do vertical cat anyhow.
Ver también
Categorías
Más información sobre Cell Arrays 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!