LIBML
Version 3.2.4
LIBML DSP Software Library
|
Instance structure for the floating-point normalized LMS filter. More...
#include <tpt_math_filter.h>
Data Fields | |
uint16_t | uTaps |
number of coefficients in the filter. More... | |
f32_t * | pState |
f32_t * | pCoeffs |
f32_t | fMu |
step aCount that control filter coefficient updates. More... | |
f32_t | fEnergy |
saves previous frame energy. More... | |
f32_t | fX0 |
saves previous input sample. More... | |
Instance structure for the floating-point normalized LMS filter.
f32_t tpt_lms_norm_f32_s::fEnergy |
saves previous frame energy.
f32_t tpt_lms_norm_f32_s::fMu |
step aCount that control filter coefficient updates.
f32_t tpt_lms_norm_f32_s::fX0 |
saves previous input sample.
f32_t* tpt_lms_norm_f32_s::pCoeffs |
points to the coefficient array. The array is of length uTaps.
f32_t* tpt_lms_norm_f32_s::pState |
points to the state variable array. The array is of length uTaps + aCount - 1.
uint16_t tpt_lms_norm_f32_s::uTaps |
number of coefficients in the filter.