Insert degree symbol in axis title.
Afficher commentaires plus anciens
Please see the attached image. How can i add such degree symbol in a matlab figure?
Réponse acceptée
Plus de réponses (2)
Voss
le 1 Sep 2021
xt = get(gca,'XTick');
xtl = arrayfun(@(x)sprintf('%d\\circE',x),xt,'UniformOutput',false);
set(gca,'XTickLabel',xtl);
Fangjun Jiang
le 1 Sep 2021
Modifié(e) : Fangjun Jiang
le 1 Sep 2021
title('9^oE')
text(0.5,0.5,'9^oE')
xticklabels({'0^oE','1^oE'})
doc title
search for "superscript"
Catégories
En savoir plus sur Annotations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

