Is it possible to interpret legends differently?

2 visualizaciones (últimos 30 días)
Mr M.
Mr M. el 2 de Feb. de 2017
Respondida: Jan el 2 de Feb. de 2017
I woud like to interpret a legend by 'latex' but another without LaTeX, is it possible?

Respuesta aceptada

Adam
Adam el 2 de Feb. de 2017
Editada: Adam el 2 de Feb. de 2017
Yes, when you create a legend either set 'Interpreter' when you create it or use
hLegend = legend(...)
to keep a handle to your legend, then you can change it afterwards as e.g.
hLegend.Interpreter = 'none';

Más respuestas (1)

Jan
Jan el 2 de Feb. de 2017
You can set the interpreter for each legend individually:
subplot(1,2,1)
h1 = plot(1:10)
legend(h1, '$2^n$', 'Interpreter', 'LaTeX');
subplot(1,2,2)
h2 = plot(1:20)
legend(h2, '$2^n$', 'Interpreter', 'none');

Community Treasure Hunt

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

Start Hunting!

Translated by