conv | R Documentation |
Convolution and polynomial multiplication.
conv(x, y)
x , y |
real or complex vectors. |
r = conv(p,q)
convolves vectors p
and q
.
Algebraically, convolution is the same operation as multiplying the
polynomials whose coefficients are the elements of p
and q
.
Another vector.
conv
utilizes fast Fourier transformation.
deconv
, polyadd
conv(c(1, 1, 1), 1)
conv(c(1, 1, 1), c(0, 0, 1))
conv(c(-0.5, 1, -1), c(0.5, 0, 1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.