convolve2D {waveslim} | R Documentation |
Fast Column-wise Convolution of a Matrix
Description
Use the Fast Fourier Transform to perform convolutions between a sequence and each column of a matrix.
Usage
convolve2D(x, y, conj = TRUE, type = c("circular", "open"))
Arguments
x |
MxN matrix. |
y |
numeric sequence of length N. |
conj |
logical; if |
type |
character; one of For |
Details
This is a corrupted version of convolve
made by replacing fft
with mvfft
in a few places. It would be nice to submit this to the R
Developers for inclusion.
Author(s)
B. Whitcher