cwtimage(Rwave)
cwtimage()所属R语言包:Rwave
Continuous Wavelet Transform Display
连续小波变换的显示
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Converts the output (modulus or argument) of cwtpolar to a 2D array and displays on the graphic device.
的cwtpolar一个二维数组,并显示在图形设备的输出转换(模数或参数)。
用法----------Usage----------
cwtimage(input)
参数----------Arguments----------
参数:input
3D array containing a continuous wavelet transform </table>
三维数组,包含连续小波变换</ 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)
二维数组(信号\的_size所述NB \ _scales)
3D array (signal\_size x noctave x nvoice)
3D阵列(信号\ _size所述noctave所述nvoice)
值----------Value----------
2D array continuous (complex) wavelet transform
二维数组的连续小波变换(复杂)
参考文献----------References----------
参见----------See Also----------
cwtpolar, cwt, DOG.
cwtpolar,cwt,DOG。
实例----------Examples----------
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)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|