LIBML
Version 3.2.4
LIBML DSP Software Library
|
Instance structure for the Q15 normalized LMS filter. More...
#include <tpt_math_filter.h>
Data Fields | |
uint16_t | uTaps |
number of coefficients in the filter. More... | |
q15_t * | pState |
q15_t * | pCoeffs |
q15_t | qMu |
step aCount that control filter coefficient updates. More... | |
uint8_t | pShift |
bit shift applied to coefficients. More... | |
q15_t | qEnergy |
saves previous frame energy. More... | |
q15_t | qX0 |
saves previous input sample. More... | |
Instance structure for the Q15 normalized LMS filter.
q15_t* tpt_lms_norm_q15_s::pCoeffs |
points to the coefficient array. The array is of length uTaps.
uint8_t tpt_lms_norm_q15_s::pShift |
bit shift applied to coefficients.
q15_t* tpt_lms_norm_q15_s::pState |
points to the state variable array. The array is of length uTaps + aCount - 1.
q15_t tpt_lms_norm_q15_s::qEnergy |
saves previous frame energy.
q15_t tpt_lms_norm_q15_s::qMu |
step aCount that control filter coefficient updates.
q15_t tpt_lms_norm_q15_s::qX0 |
saves previous input sample.
uint16_t tpt_lms_norm_q15_s::uTaps |
number of coefficients in the filter.