Is it possible to interpret legends differently?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I woud like to interpret a legend by 'latex' but another without LaTeX, is it possible?
0 Commenti
Risposta accettata
Più risposte (1)
Jan
il 2 Feb 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');
0 Commenti
Vedere anche
Categorie
Scopri di più su Legend in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!