LIBML
Version 3.2.4
LIBML DSP Software Library
|
Instance structure for the Q15 sparse FIR filter. More...
#include <tpt_math_filter.h>
Data Fields | |
uint16_t | uTaps |
number of coefficients in the filter. More... | |
uint16_t | stateIndex |
q15_t * | pState |
q15_t * | pCoeffs |
uint16_t | maxDelay |
maximum offset specified by the pTapDelay array. More... | |
int32_t * | pTapDelay |
Instance structure for the Q15 sparse FIR filter.
uint16_t tpt_fir_sparse_q15_s::maxDelay |
maximum offset specified by the pTapDelay array.
q15_t* tpt_fir_sparse_q15_s::pCoeffs |
points to the coefficient array. The array is of length uTaps.
q15_t* tpt_fir_sparse_q15_s::pState |
points to the state buffer array. The array is of length maxDelay+blockSize-1.
int32_t* tpt_fir_sparse_q15_s::pTapDelay |
points to the array of delay values. The array is of length uTaps.
uint16_t tpt_fir_sparse_q15_s::stateIndex |
state buffer index. Points to the oldest sample in the state buffer.
uint16_t tpt_fir_sparse_q15_s::uTaps |
number of coefficients in the filter.