conv(signal)
conv()所属R语言包:signal
Convolution
卷积
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A Matlab/Octave compatible convolution function that uses the Fast Fourier Transform.
的Matlab /倍频程兼容,采用快速傅立叶变换的卷积函数。
用法----------Usage----------
conv(x, y)
参数----------Arguments----------
参数:x,y
numeric sequences to be convolved.
数字序列被卷积。
Details
详细信息----------Details----------
The inputs x and y are post padded with zeros as follows:
的输入x和y后用零填充如下:
ifft(fft(postpad(x, n) * fft(postpad(y, n))))
ifft(fft(postpad(x, n) * fft(postpad(y, n))))
where n = length(x) + length(y) - 1
其中n = length(x) + length(y) - 1
值----------Value----------
An array of length equal to length(x) + length(y) - 1. If x and y are polynomial coefficient vectors, conv returns the coefficients of the product polynomial.
长度等于length(x) + length(y) - 1的数组。如果x和y是多项式的系数向量,conv返回产品的多项式的系数。
(作者)----------Author(s)----------
Original Octave version by Paul Kienzle
<a href="mailto:pkienzle@user.sf.net">pkienzle@user.sf.net</a>. Conversion to R by Tom Short.
参考文献----------References----------
参见----------See Also----------
convolve, fft,
convolve,fft,
实例----------Examples----------
conv(c(1,2,3), c(1,2))
conv(c(1,2), c(1,2,3))
conv(c(1,-2), c(1,2))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|