DADiSP Worksheet Functions > Function Categories > Display and Manipulation > UNOVERPLOTALL
Removes one or more overplots from a stripchart.
UNOVERPLOTALL(win, sernum)
win |
- |
Optional. A Window. Defaults to current Window. |
sernum |
- |
Optional. An integer. Specifies one or more series to remove. Defaults to |
Nothing, the specified overplotted series are removed from the stripchart.
W1: stripchart(gnorm(1000, 1), gnorm(1000, 1))
W2: integ(w1)
W3: movavg(w2, 20);overplotall(w2, lred)
The stripchart data in W2 is synthesized by integrating two 1000 point series of normally distributed random noise. The series is smoothed via a 20 point moving average in W3. The unsmoothed source in W2 is overplotted in red on to W3 for visual comparison. To remove the overplots:
unoverplotall(W3)
Use OVERPLOTALL to add overplots to a stripchart.