Insert degree symbol in axis title.
Show older comments
Please see the attached image. How can i add such degree symbol in a matlab figure?
Accepted Answer
More Answers (2)
Voss
on 1 Sep 2021
xt = get(gca,'XTick');
xtl = arrayfun(@(x)sprintf('%d\\circE',x),xt,'UniformOutput',false);
set(gca,'XTickLabel',xtl);
Fangjun Jiang
on 1 Sep 2021
Edited: Fangjun Jiang
on 1 Sep 2021
title('9^oE')
text(0.5,0.5,'9^oE')
xticklabels({'0^oE','1^oE'})
doc title
search for "superscript"
Categories
Find more on Annotations 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!
