Tilde character underneath a letter in Matlab charts
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Olivia Milton-thompson
am 14 Okt. 2019
Kommentiert: Olivia Milton-thompson
am 20 Okt. 2019
I am trying to put a tilde underneath a letter in my ylabel on a chart in Matlab. I am using interpreter and latex to do it and i know the way to do it in Latex is \utilde. But Matlab does not seem to recognise this command, it does recognise \tilde, however.
Has anyone tried to put a character underneath a letter in Matlab for chart plots? How can I do this?!
Thanks!
Olivia
0 Kommentare
Akzeptierte Antwort
Abhisek Pradhan
am 17 Okt. 2019
The following code may be able to help you.
ylabel('$\stackrel{a}{\tilde{}}$','Interpreter','latex');
3 Kommentare
Abhisek Pradhan
am 18 Okt. 2019
Is this what are you looking for
ylabel('$\stackrel{a}{\tilde{}}$','Interpreter','latex','FontSize',60);
set(get(gca,'ylabel'),'rotation',0);
Weitere Antworten (1)
Walter Roberson
am 18 Okt. 2019
If you do not need latex then use 'a' followed by U+0330. Unicode can be used for interpreter none or tex
5 Kommentare
Walter Roberson
am 18 Okt. 2019
It works for me on Mac, R2019b. Which release and OS are you using?
Example of incorporating text and variables:
autilde =['a' hex2dec('0330')];
iter = 17;
ylabel( sprintf('%s%s%d', 'experiment #', autilde, iter))
Siehe auch
Kategorien
Mehr zu Entering Commands finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!