Learn R Programming

biwavelet (version 0.20.22)

convolve2D: 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"))

Value

M x n matrix

Arguments

x

M x n matrix.

y

Numeric sequence of length N.

conj

Logical; if TRUE, take the complex conjugate before back-transforming. TRUE is used for usual convolution.

type

Character; one of circular, open (beginning of word is ok).

For circular, the two sequences are treated as circular, i.e., periodic.

For open and filter, the sequences are padded with zeros (from left and right) first; filter returns the middle sub-vector of open, namely, the result of running a weighted mean of x with weights y.

Author

Brandon Whitcher

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.