-
sdr.FIR.__call__(x: ArrayLike, mode: 'full' | 'valid' | 'same' =
'full'
) NDArray Filters the input signal
with the FIR filter.- Parameters:¶
- x: ArrayLike¶
The input signal
with length .- mode: 'full' | 'valid' | 'same' =
'full'
¶ The non-streaming convolution mode.
"same"
: The output signal has length . Output sample 0 aligns with input sample 0."full"
: The full convolution is performed. The output signal has length , where is the order of the filter. Output sampledelay
aligns with input sample 0.
In streaming mode, the
"full"
convolution is performed. However, for each input samples only output samples are produced per call. A final call toflush()
is required to flush the filter state.
- Returns:¶
The filtered signal
. The output length is dictated by themode
argument.
Examples
See the FIR filters example.