MATLAB: Is it possible to interpret legends differently

interpretlatexlegendplottext;

I woud like to interpret a legend by 'latex' but another without LaTeX, is it possible?

Best Answer

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';
Related Question