MATLAB: Boxplot greek symbol bug

axisboxplotgreek symbolsymbol [~]

I can't seem to use greek symbols on the boxplot axis?
This works fine:
plot(rand(10,1))
ylabel('\muL')
This doesn't work:
boxplot(rand(10,1))
ylabel('\muL')

Best Answer

Try
ylabel('\muL', 'Interpreter','tex')