plot label with latex symbol
56 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Simo
el 3 de Abr. de 2020
Respondida: Lazaros
el 22 de Abr. de 2025
hi
how can i enter latex symbol (greek letter rho this time) in the labels of a plot? (first order bessel function)
yl={'J_{1}(\rho)','$'};
xl={'\rho','$'};
ylabel(yl,'interpreter','latex')
ylabel(xl,'interpreter','latex')
0 comentarios
Respuesta aceptada
Peng Li
el 3 de Abr. de 2020
You need to have the leading and ending symbol $.
e.g., ylabel('$J_{1}(\rho)$','interpreter','latex')
Más respuestas (1)
Lazaros
el 22 de Abr. de 2025
Matlab basically understands all the basic symbols that the amsmath package uses, so you can include subscript and superscript, as well as functions like \cos and \frac{}{}. The comment above covers you, but I have some additional examples in this video, https://www.youtube.com/watch?v=5TwChCWGllI
0 comentarios
Ver también
Categorías
Más información sobre Labels and Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!