I would like to have sigma and epsilon in greek symbols in y and x axis respectively (with latex interpreter)
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Francesco Marchione
el 1 de Ag. de 2021
Respondida: Francesco Marchione
el 1 de Ag. de 2021
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')
0 comentarios
Respuesta aceptada
Más respuestas (3)
Sulaymon Eshkabilov
el 1 de Ag. de 2021
xlabel('$\epsilon$', 'interpreter', 'latex'); ylabel('$\tau$', 'interpreter', 'latex')
1 comentario
Sulaymon Eshkabilov
el 1 de Ag. de 2021
xlabel('\epsilon, [-]'); ylabel('\tau, [MPa]')
0 comentarios
Ver también
Categorías
Más información sobre Formatting and Annotation en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!