MATLAB: How to change the fontface of a text within a plot

fontface

Quick question, can I change the font face on MATLABs plot to other not being Arial (At least I think the default style is Arial).
If I were to change it to Times New Roman, what must I do?
Can you please help?

Best Answer

title() and *label() accept 'FontName' property/value pairs. You can also use a FontName property/value pair in an axes() call, or you can set() that.
Note that if you set() an axes fontname, then http://www.mathworks.com/help/matlab/ref/axes_props.html
"Note that MATLAB does not display the x-, y-, and z-axis labels in a new font until you manually reset them (by setting the XLabel, YLabel, and ZLabel properties or by using the xlabel, ylabel, or zlabel command). Tick mark labels change immediately."
Related Question