PureData CEAMMC library web documentation
aliases: [list.conv]
available since version: 0.9.4
Note: may perform slowly in large lists because it does not use the FFT to compute the convolution
@a
Get/set first argument
type: list
@b
Get/set second argument
type: list
@mode
Get/set output mode. 'full' - output the convolution at each point of overlap, with an
output length of (M+N-1). At the end-points of the convolution, the signals do
not overlap completely, and boundary effects may be seen. 'valid' - output of
length (max(M,N)-min(M,N)+1). The convolution product is only given for points
where the signals overlap completely. Values outside the signal boundary have
no effect. 'same' - output of length max(M,N). Boundary effects are still
visible
type: symbol
enum: valid, same, full
default: full
@valid
Get/set alias to @mode valid
type: alias
@same
Get/set alias to @mode same
type: alias
@full
Get/set alias to @mode full
type: alias
Authors: Serge Poltavsky
License: GPL3 or later