cwtimage: Continuous Wavelet Transform Display

Description Usage Arguments Details Value References See Also Examples

View source: R/Cwt_Morlet.R

Description

Converts the output (modulus or argument) of cwtpolar to a 2D array and displays on the graphic device.

Usage

1
cwtimage(input)

Arguments

input

3D array containing a continuous wavelet transform

Details

The output contains the (complex) values of the wavelet transform of the input signal. The format of the output can be

2D array (signal\_size x nb\_scales)

3D array (signal\_size x noctave x nvoice)

Value

2D array continuous (complex) wavelet transform

References

See discussions in the text of “Practical Time-Frequency Analysis”.

See Also

cwtpolar, cwt, DOG.

Examples

1
2
3
4
5
6
    x <- 1:512
    chirp <- sin(2*pi * (x + 0.002 * (x-256)^2 ) / 16)
    retChirp <- cwt(chirp, noctave=5, nvoice=12, twoD=FALSE, plot=FALSE)
    retPolar <- cwtpolar(retChirp)
    retImageMod <- cwtimage(retPolar$modulus)
    retImageArg <- cwtimage(retPolar$argument)

Example output



Rwave documentation built on May 2, 2019, 5:48 p.m.

Related to cwtimage in Rwave...