how to write superscripts for x-axis in a boxplot

4 vues (au cours des 30 derniers jours)
NA
NA le 6 Jan 2020
I have
h=boxplot(x, g, 'notch','off','label', {'89_{p}','10007_{p}','3067_{M}'});
how to write p as a superscripts for x-axis

Réponse acceptée

Adam Danz
Adam Danz le 6 Jan 2020
set(gca,'TickLabelInterpreter','tex')

Plus de réponses (1)

Max Murphy
Max Murphy le 6 Jan 2020
% h=boxplot(x, g, 'notch','off','label', {'89_{p}','10007_{p}','3067_{M}'});
% You were using subscript operator (_)
h=boxplot(x, g, 'notch','off','label', {'89^{p}','10007^{p}','3067^{M}'});

Catégories

En savoir plus sur Symbolic Math Toolbox 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