how to write superscripts in axis labels?

조회 수: 459 (최근 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 CenterFile Exchange에서 Axis Labels에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by