MATLAB: How displayin a number with its subscript

MATLAB

Hi,
I want to display a number hs0 as h with subscript s0.
plot (x,y1,x,y2)
legend('h=hs0','h=2hs0')

Best Answer

legend('h=h_s0','h=2h_s0')
See the interpreter option in the legend documentation:
Related Question