MATLAB: Setting additional specific axis tick marks

plotting_basic

I have a y axis that spans 0 – 15. I want to place an extra tick mark (labelled with its value) at the minimum value of y (0.018 in one data set, for example).
It is not appropriate for me to use a log scale – the data is well presented, it is just not obvious to the reader that the minimum value is not zero.
Thank you.

Best Answer

set(gca, 'YTick', sort([0.018, get(gca, 'YTick')]));