Alphabetical list Categories
qyaxis Plot y-axis
Help text:

qyaxis(x0, [y0 y1], yy) plots an y-axis with ticks at yy. (yy may be empty.)
qyaxis(x0, yy) calculates y0 and y1 from yy.
qyaxis(x0, [], yy) only draws ticks, not an axis line.
qyaxis(..., lbls) where lbls is either a cell array or numeric vector the same size as yy overrides the default tick labels. Labels are suppressed if lbls is empty.
qyaxis(..., ttl) adds a title to the axis.

qyaxis obeys settings from qticklen, qtextdist, and qaxshift.
qyaxis('r', ...) inverts the sign of these settings.
qyaxis('R', ...) additionally orients the title the other way.

Example:

qfigure('qyaxis', 3, 3);

qyaxis(0, [0:5]);

qyaxis(1, [0:5], {'zero', 'one', 'two', 'three', 'four', 'five'});

qyaxis(2, [0:5], []);

qyaxis('r', 3, [0:5], 'right orientation')

qyaxis('R', 4, [0 5], [1:4], 'flipped title')

qshrink

QPlot Documentation — (C) Daniel Wagenaar, 2014