Rotate Individual Letters in a String

3 visualizzazioni (ultimi 30 giorni)
Dima
Dima il 23 Gen 2012
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!

Risposta accettata

Jan
Jan il 24 Gen 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.
  1 Commento
Dima
Dima il 24 Gen 2012
Brilliant!!!! this one worked! thanks so much!!))) can you please explain to me how this code works?
My aim is to place vertical text markers on MULTIPLE points in a chart so I used a code like this:
text(Num(7:end2,1)-1,Num(7:end2,77),'S1')
now I just replaced it to work in the for-end way:
for j=7:end2
text(j,Num(j,76),C,'FontSize',2,'Color','W','VerticalAlignment','middle','HorizontalAlignment','center','Rotation',0,'BackgroundColor',[1,0.4,0.6]);
end
and it works superb!!! I now just need to generate separate word strong for each point from
S = 'SINE';
C = cell(1, numel(S));
for i = 1:numel(S)
C{i} = S(i);
end

Accedi per commentare.

Più risposte (3)

bym
bym il 23 Gen 2012
t = 'sine'
flipud(t')
ans =
e
n
i
s
  2 Commenti
Dima
Dima il 23 Gen 2012
thanks...but when I try to text the oputput of flipud(t') it gives the same error:
??? Error using ==> text
Each string specified must have a corresponding set of coordinates
bym
bym il 24 Gen 2012
what are your x y arguments passed to text()?

Accedi per commentare.


Dima
Dima il 23 Gen 2012
I mean:
E
N
I
S

Dima
Dima il 23 Gen 2012
I found a way to create the vertical string :
t1 = 'S'; t2 = 'I'; t3 = 'N'; t4 = 'E';
S1 = char(t1, t2, t3);
But when I try to text this string I get the following error:
??? Error using ==> text
Each string specified must have a corresponding set of coordinates
I wonder what is the reason for this error?
Thanks!
  4 Commenti
Walter Roberson
Walter Roberson il 23 Gen 2012
char() with multiple single-character arguments turns out to do vertical cat anyhow.
Dima
Dima il 24 Gen 2012
you think it is impossible to rotate the text in this way with no function whatsoever?

Accedi per commentare.

Categorie

Scopri di più su Cell Arrays in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by