| << hist | Graphics functions | hot >> |
| hold('on') |
| hold('off') |
| hold('all') |
| hold() |
| hold(ax, ...) |
turn hold on.
turn hold off.
same as hold on.
Target axes: axes.
a graphics object: axes type.
hold allows to construct a plot sequence incrementally.
f = figure();
x = linspace(-pi, pi);
y1 = cos(x);
plot(x, y1)
hold on
y2 = sin(x);
plot(x, y2)
hold off
| Version | Description |
|---|---|
| 1.0.0 | initial version |
Allan CORNET