Convolution Module

Functions and values

Function or value Description

convolve v1 v2

Full Usage: convolve v1 v2

Parameters:
Returns: Vector<float>

Computes a complete non-circular convolution of x and y. This function does not use
the fast fourier transformation to calculate the convolution and can be slow if x and y are large.
This function does not perform a padding of x and y.

v1 : vector

v2 : vector

Returns: Vector<float>

Example