I would like to have sigma and epsilon in greek symbols in y and x axis respectively (with latex interpreter)

조회 수: 23 (최근 30일)
I would like to have sigma and epsilon in greek symbols in y and x axis respectively (with latex interpreter).
I have the following code, but it does not work as I wish:
T1 = readtable('PVC_Dogbones_media.xlsx', 'VariableNamingRule','preserve')
figure
plot(T1.('epsilon'), T1.('sigma'), '-k', 'LineWidth',0.5)
grid
xlim([0 0.5])
ylim([0 50])
ylabelname = sprintf('$${\tau}$$ [Pa]','${D_{i}}$' );
ylabel(ylabelname, 'fontsize', 11, 'interpreter', 'latex')
set(gca,'xticklabel',num2str(get(gca,'xtick')','%.2f'))
L=legend('PVC','Location','best');
set(L,'Interpreter','latex')
set(gca,'TickLabelInterpreter','latex')
xlabel(sprintf('$$\epsilon$$ [mm]','${D_{i}}$'), 'Interpreter','latex')
ylabel(sprintf('$${\tau}$$ [Pa]','${D_{i}}$'), 'Interpreter','latex')

채택된 답변

Yazan
Yazan 2021년 8월 1일
편집: Yazan 2021년 8월 1일
What are you trying to achieve with the sprintf function?? Use the following to name the X- and Y-axis:
x = randn(1, 128);
plot(x)
xlabel('$\epsilon$ [-]', 'interpreter', 'latex');
ylabel('$\sigma$ [MPa]', 'interpreter', 'latex')
  댓글 수: 1
Francesco Marchione
Francesco Marchione 2021년 8월 1일
Yes, but for the y-axis it still does not work:
T1 = readtable('PVC_Dogbones_media.xlsx', 'VariableNamingRule','preserve')
figure
plot(T1.('epsilon'), T1.('sigma'), '-k', 'LineWidth',1.1)
grid
xlim([0 0.5])
ylim([0 50])
xlabel('$\epsilon$ [-]', 'Interpreter','latex');
ylabel('$\sigma$ [MPa]', 'Interpreter','latex');
ylabel(ylabelname, 'fontsize', 11)
set(gca,'xticklabel',num2str(get(gca,'xtick')','%.2f'))
L=legend('PVC','Location','best');
set(L,'Interpreter','latex')
set(gca,'TickLabelInterpreter','latex')

댓글을 달려면 로그인하십시오.

추가 답변 (3개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 8월 1일
xlabel('$\epsilon$', 'interpreter', 'latex'); ylabel('$\tau$', 'interpreter', 'latex')
  댓글 수: 1
Francesco Marchione
Francesco Marchione 2021년 8월 1일
Thank you. I have modified my code in this way:
T1 = readtable('PVC_Dogbones_media.xlsx', 'VariableNamingRule','preserve')
figure
plot(T1.('epsilon'), T1.('sigma'), '-k', 'LineWidth',1.1)
grid
xlim([0 0.5])
ylim([0 50])
xlabel('$\epsilon$ [-]', 'interpreter', 'latex');
ylabel('$\sigma$ [MPa]', 'interpreter', 'latex')
ylabel(ylabelname, 'fontsize', 11)
set(gca,'xticklabel',num2str(get(gca,'xtick')','%.2f'))
L=legend('PVC','Location','best');
set(L,'Interpreter','latex')
set(gca,'TickLabelInterpreter','latex')
but the y axis is not properly configured:

댓글을 달려면 로그인하십시오.


Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 8월 1일
xlabel('\epsilon, [-]'); ylabel('\tau, [MPa]')

Francesco Marchione
Francesco Marchione 2021년 8월 1일
This line prevented the correct labeling of the y axis
ylabel(ylabelname, 'fontsize', 11)

카테고리

Help CenterFile Exchange에서 Labels and Annotations에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by