how to write superscripts in axis labels?

438 ビュー (過去 30 日間)
Manikatam Gaddam
Manikatam Gaddam 2016 年 12 月 10 日
コメント済み: Adam Danz 2019 年 8 月 19 日
when I wrote the following plot. I couldn't get the superscript in labels.Can you guys help me. Thank you.
d = [ 2 4 5 7] d5l =1*[0.8839 2.45 13.59 5.492] plot(d,d5l,'--kd','markersize',20,'markerfacecolor','k') str1=' bell diameter $$d $$[cm]' str2='$$|\overline{Q}|$$ [cm^2/s]' legend('x/d = -1') xlabel(str1,'interpreter','latex','fontsize',30,'fontweight','bold') ylabel(str2,'interpreter','latex','fontsize',30,'fontweight','bold') set(gca, 'FontSize', 35,'fontweight','bold'); box on
  2 件のコメント
David Barry
David Barry 2016 年 12 月 10 日
Please format your code so we can help.
Manikatam Gaddam
Manikatam Gaddam 2016 年 12 月 10 日
%%can you look on yaxis label
d = [ 2 4 5 7]; d5l =1*[0.8839 2.45 13.59 5.492]; hold on plot(d,d5l,'--k^','markersize',20,'markerfacecolor','k'); str1=' bell diameter $$d $$[cm]'; str2='$$|\overline{Q}|$$ [cm^{2}/s]'; legend('x/d = -1'); xlabel(str1,'interpreter','latex','fontsize',30,'fontweight','bold'); ylabel(str2,'interpreter','latex','fontsize',30,'fontweight','bold');
set(gca, 'FontSize', 35,'fontweight','bold'); box on

サインインしてコメントする。

採用された回答

KSSV
KSSV 2016 年 12 月 10 日
To get a subscript you must use the underscore "_" character and for superscript use "^". For example:
plot(1:10)
title('^{super} normal _{sub}')
  2 件のコメント
Manikatam Gaddam
Manikatam Gaddam 2016 年 12 月 10 日
編集済み: KSSV 2018 年 4 月 16 日
%%can you look on yaxis label
d = [ 2 4 5 7];
d5l =1*[0.8839 2.45 13.59 5.492];
hold on
plot(d,d5l,'--k^','markersize',20,'markerfacecolor','k');
str1=' bell diameter $$d $$[cm]';
str2='$$|\overline{Q}|$$ [cm^{2}/s]';
legend('x/d = -1');
xlabel(str1,'interpreter','latex','fontsize',30,'fontweight','bold');
ylabel(str2,'interpreter','latex','fontsize',30,'fontweight','bold');
set(gca, 'FontSize', 35,'fontweight','bold');
box on
Adam Danz
Adam Danz 2019 年 8 月 19 日
str2='$$|\overline{Q}|$$ [cm^{2}/s]';
% should be
str2='$$|\overline{Q}| [cm^{2}/s]$$';

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by