Effacer les filtres
Effacer les filtres

How can I give degree symbol in XTicklabel in a bar graph?

10 vues (au cours des 30 derniers jours)
Md Zillur Rahman
Md Zillur Rahman le 28 Oct 2015
I used the following code in Matlab 2013b to give degree symbol in X-axis tick label.
set(gca,'XTicklabel',{'Neat PP';'0^{\circ}';'30^{\circ}';'45^{\circ}';'60^{\circ}';'90^{\circ}'})
It did not help me (please see attached figure). Can anyone please give me solution? Thank you.

Réponse acceptée

Stalin Samuel
Stalin Samuel le 28 Oct 2015
set(gca,'XTicklabel',{'Neat PP'; [sprintf('0%c', char(176))];[sprintf('30%c', char(176))];[sprintf('45%c', char(176))];[sprintf('60%c', char(176))];[sprintf('90%c', char(176))]})

Plus de réponses (1)

Stephen23
Stephen23 le 28 Oct 2015
Modifié(e) : Stephen23 le 28 Oct 2015
Make sure that the axes' TickLabelInterpreter property is set to either tex or latex:
The documentation includes a list of the TEX symbols and commands that can be used in MATLAB: click on the arrow in the subheading to show the full list.
  1 commentaire
Steven Lord
Steven Lord le 28 Oct 2015
The TickLabelInterpreter property was introduced as part of the new graphics system in release R2014b. It is not available in release R2013b.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Labels and Annotations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by