kernapply(stats)
kernapply()所属R语言包:stats
Apply Smoothing Kernel
应用平滑内核
译者:生物统计家园网 机器人LoveR
描述----------Description----------
kernapply computes the convolution between an input sequence and a specific kernel.
kernapply计算卷积之间的输入序列和一个特定的内核。
用法----------Usage----------
kernapply(x, ...)
## Default S3 method:[默认方法]
kernapply(x, k, circular = FALSE, ...)
## S3 method for class 'ts'
kernapply(x, k, circular = FALSE, ...)
## S3 method for class 'vector'
kernapply(x, k, circular = FALSE, ...)
## S3 method for class 'tskernel'
kernapply(x, k, ...)
参数----------Arguments----------
参数:x
an input vector, matrix, time series or kernel to be smoothed.
输入向量,矩阵,时间序列或内核进行平滑。
参数:k
smoothing "tskernel" object.
平滑"tskernel"对象。
参数:circular
a logical indicating whether the input sequence to be smoothed is treated as circular, i.e., periodic.
逻辑表示是否将平滑输入序列为圆形,即定期处理。
参数:...
arguments passed to or from other methods.
参数传递或其他方法。
值----------Value----------
A smoothed version of the input sequence.
一个输入序列的平滑版本。
注意----------Note----------
This uses fft to perform the convolution, so is fastest when NROW(x) is a power of 2 or some other highly composite integer.
使用fft进行卷积,这样是最快的时候NROW(x)是一个2的乘方或其他一些高度复合的整数。
作者(S)----------Author(s)----------
A. Trapletti
参见----------See Also----------
kernel, convolve, filter, spectrum
kernel,convolve,filter,spectrum
举例----------Examples----------
## see 'kernel' for examples[#看到的例子内核]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|