XPSCnvDcnv | R Documentation |
XPSCnvDcnv() is used to calculate the convolution of the two X, Y input arrays or deconvolve Y from X. deconvolution can be made using the fft and its inverse or the
XPSCnvDcnv(x, y, deco = FALSE)
x |
array to convolve |
y |
array to convolve |
deco |
= FALSE convolution of X, Y arrays, TRUE deconvolution of Y from X |
## Not run:
x <- c(4, 13, 28, 34, 32, 21)
y <- c(1, 2, 3)
C <- XPSCnvDcnv(x, y, deco=TRUE)
print(C)
[1] 4 5 6 7
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.