MATLAB: How to colour in different colours 2 rows of ylabel using Latex as interpreter

colorinterpreter latexylabel

I wrote this line :
ylabel({'$\tilde{\mu}_c$','$\tilde{\mu}_o$'},'Interpreter', 'Latex','Rotation',0,'Position',[-0.1,0.5,0],'FontSize',15)
as ylabel but I wanted to colour in red '$\tilde{\mu}_c$' and in blue '$\tilde{\mu}_o$' using Latex as interpreter (because I need it to put the tilde on the mu symbol ).
thank you for helping me

Best Answer

Well, it finally dawned on me how to work around your particular wish...
hTxt(1,1)=text(-0.1,0.55,{'$\tilde{\mu}_c$'},'Interpreter', 'Latex','Rotation',0,'FontSize',15,'color','r');
hTxt(2,1)=text(-0.1,0.45,{'$\tilde{\mu}_o$'},'Interpreter', 'Latex','Rotation',0,'FontSize',15,'color','b');
results in
May want to fiddle with position a little, but gets the characters wanted in the colors wanted.
So, somehow the LaTeX engine is told the color, but can't figure out how to do it other than globally for the string. This produces two objects instead of just the one via legend so can fixup them individually.
Related Question