DADiSP Worksheet Functions > Function Categories > Display and Manipulation > UNOVERPLOTALL

 

UNOVERPLOTALL

Purpose:

Removes one or more overplots from a stripchart.

Syntax:

UNOVERPLOTALL(win, sernum)

win

-

Optional. A Window. Defaults to current Window.

sernum

-

Optional. An integer. Specifies one or more series to remove. Defaults to -1, remove all overplots.

Returns:

Nothing, the specified overplotted series are removed from the stripchart.

Example:

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)

Remarks:

Use OVERPLOTALL to add overplots to a stripchart.

See Also:

OVERLAY

OVERPLOT

OVERPLOTALL

OVERPLOTWIN

UNOVERLAY

UNOVERPLOT