Alphabetical list Categories
qplot Draw a line series in data space
Help text:

qplot(xx, yy) plots the data yy vs xx. xx and yy are given in data coordinates. See also qline and qgline.

Example:

qfigure('qplot', 3, 3);

xx = [0:.1:2*pi];

qplot(xx, sin(xx));

yy = cos(xx);

yy(abs(yy)<.1) = nan;

qplot(xx, yy);

QPlot Documentation — (C) Daniel Wagenaar, 2014–2019