cwtTh(Rwave)
cwtTh()所属R语言包:Rwave
Cauchy's wavelet transform
柯西小波变换
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute the continuous wavelet transform with (complex-valued) Cauchy's wavelet.
计算(复值)柯西小波的连续小波变换。
用法----------Usage----------
参数----------Arguments----------
参数:input
input signal (possibly complex-valued).
输入信号(可能是复数)。
参数:noctave
number of powers of 2 for the scale variable.
规模变量的2的幂数。
参数:nvoice
number of scales in each octave (i.e. between two consecutive powers of 2).
在每倍频程的尺度(即两个连续的2的幂)。
参数:moments
number of vanishing moments.
消失矩的数目。
参数:twoD
logical variable set to T to organize the output as a 2D array (signal size x nb scales), otherwise, the output is a 3D array (signal size x noctave x nvoice).
逻辑变量设置为T组织作为一个二维数组输出(信号大小x的NB尺度),否则,输出的是一个的3D数组(信号大小x noctave所述nvoice)。
参数:plot
if set to T, display the modulus of the continuous wavelet transform on the graphic device. </table>
如果设置为T,显示的图形设备上的连续小波变换的模量。 </ TABLE>
Details
详细信息----------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)
二维数组(信号的大小x NB尺度)
3D array (signal size x noctave x nvoice)
三维数组(信号的大小xnoctave的xnvoice)
值----------Value----------
参数:tmp
continuous (complex) wavelet transform.
连续小波变换(复杂)。
参考文献----------References----------
参见----------See Also----------
cwt, cwtp, DOG, gabor.
cwt,cwtp,DOG,gabor。
实例----------Examples----------
x <- 1:512
chirp <- sin(2*pi * (x + 0.002 * (x-256)^2 ) / 16)
retChirp <- cwtTh(chirp, noctave=5, nvoice=12, moments=20)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|