Writing legends for MATLAB figures with subscripts

 Respuesta aceptada

Epsilon
Epsilon el 11 de Sept. de 2024
Editada: Epsilon el 11 de Sept. de 2024
Hi Milad,
You can create legends with subscripts by using the LaTeX interpreter. Use the underscore character _ to denote subscripts, and set the interpreter to 'latex'.
Attaching a small code for reference:
x = linspace(0, 2*pi, 100);
y1 = sin(x);
y2 = cos(x);
plot(x, y1, x, y2);
% Create a legend with subscripts
legend({'$y_1 = \sin(x)$', '$y_2 = \cos(x)$'}, 'Interpreter', 'latex');
You can also refer to the documentation Add legend to axes - MATLAB legend (mathworks.com) for further reference.

3 comentarios

Voss
Voss el 11 de Sept. de 2024
Editada: Voss el 11 de Sept. de 2024
@Milad: FYI, Interpreters 'tex' and 'latex' both support subscripts using the underscore character.
'tex' is the default interpreter.
plot(1:10)
legend('a_1')
Milad
Milad el 11 de Sept. de 2024
thanks. good solution.
How to use a special character like µ?
Stephen23
Stephen23 el 11 de Sept. de 2024
Editada: Stephen23 el 11 de Sept. de 2024
"How to use a special character like µ?"
Exactly as the documenation states, use LaTex markup:
\mu

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Versión

R2023a

Preguntada:

el 11 de Sept. de 2024

Editada:

el 11 de Sept. de 2024

Community Treasure Hunt

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

Start Hunting!

Translated by