how to write superscripts for x-axis in a boxplot
3 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
更多回答(1 个)
Max Murphy
2020-1-6
% 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}'});
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!