draw.wd | R Documentation |
This function draws the mother wavelet or scaling function associated with a wd.object
.
## S3 method for class 'wd'
draw(wd, ...)
wd |
The |
... |
Additional arguments to pass to the |
This function extracts the filter component from the wd
object (which is constructed using the filter.select
function) to decide which wavelet to draw. Once decided the draw.default
function is used to actually do the drawing.
If the plot.it
argument is set to TRUE then nothing is returned. Otherwise, as with draw.default
, the coordinates of what would have been plotted are returned.
Version 2 Copyright Guy Nason 1993
If the plot.it
argument is TRUE
(which it is by default) a plot of the mother wavelet or scaling function is plotted on the active graphics device.
G P Nason
filter.select
, wd.object
, draw.default
.
#
# Generate some test data
#
test.data <- example.1()$y
## Not run: ts.plot(test.data)
#
# Now do the discrete wavelet transform of the data using the Daubechies
# least-asymmetric wavelet N=10 (the default arguments in
# wd).
#
tdwd <- wd(test.data)
#
# What happens if we try to draw this new tdwd object?
#
## Not run: draw(tdwd)
#
# We get a picture of the wavelet that did the transform
#
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.