MATLAB: Both text and numbers in axis

plotticks

I'm wondering if matlab is able to customize the axis where some of the ticks are strings and some of the ticks are number?
or inconsistent tick marks (for example, tick marks 1-5 in 1 tick intervals, then 5-100 in intervals of 5?

Best Answer

set(gca, 'XTick', [1 2 3 4 5 10 15])
set(gca,'XTickLabel',{1 2 3 4 'Hello' 10 15})