Tilde character underneath a letter in Matlab charts
7 views (last 30 days)
Show older comments
Olivia Milton-thompson
on 14 Oct 2019
Commented: Olivia Milton-thompson
on 20 Oct 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 Comments
Accepted Answer
Abhisek Pradhan
on 17 Oct 2019
The following code may be able to help you.
ylabel('$\stackrel{a}{\tilde{}}$','Interpreter','latex');
3 Comments
Abhisek Pradhan
on 18 Oct 2019
Is this what are you looking for
ylabel('$\stackrel{a}{\tilde{}}$','Interpreter','latex','FontSize',60);
set(get(gca,'ylabel'),'rotation',0);
More Answers (1)
Walter Roberson
on 18 Oct 2019
If you do not need latex then use 'a' followed by U+0330. Unicode can be used for interpreter none or tex
5 Comments
Walter Roberson
on 18 Oct 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))
See Also
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!