How to add mathematical symbols to text within the legend

I'm finding it difficult to add the maths symbol /phi to my actual legend. I am able to add mathematical symbols to the title, but not the legend. I normally plot my data vectors, then edit the name, etc. of them within the plot tools rather than the command line.
I want to be able to state the number 45 followed by /phi (45/phi)

 Respuesta aceptada

The legend command should accept TeX symbols by default, just as titles, x/ylabels, etc:
plot(rand(10,1));
hl = legend('45\phi');
If not, try
set(hl, 'interpreter', 'tex')

Categorías

Más información sobre Labels and Annotations en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 22 de Nov. de 2013

Comentada:

el 22 de Nov. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by