MATLAB: Bar plot set ylimit for the axis

bar plotlimitsylim;ylimit

Hello,
is there a option to set the ylimit for the axis. I´ve tried with ylim=([0.11,0.125]); but it doesn´t work.
Thanks and best regards.

Best Answer

Try this instead:
ylim([0.11,0.125])
That should work.