-
sdr.FIR(h: ArrayLike, streaming: bool =
False
) Creates an FIR filter.
- Parameters:¶
- h: ArrayLike¶
The feedforward coefficients \(h[n]\).
- streaming: bool =
False
¶ Indicates whether to use streaming mode. In streaming mode, previous inputs are preserved between calls to
__call__()
.
Examples
See the FIR filters example.