Project Ne10
An open, optimized software library for the ARM architecture.
|
Instance structure for the floating point IIR Lattice filter. More...
#include <NE10_types.h>
Public Attributes | |
ne10_uint16_t | numStages |
numStages of the of lattice filter. More... | |
ne10_float32_t * | pState |
Points to the state variable array. More... | |
ne10_float32_t * | pkCoeffs |
Points to the reflection coefficient array. More... | |
ne10_float32_t * | pvCoeffs |
Points to the ladder coefficient array. More... | |
Instance structure for the floating point IIR Lattice filter.
Definition at line 416 of file NE10_types.h.
ne10_uint16_t ne10_iir_lattice_instance_f32_t::numStages |
numStages of the of lattice filter.
Definition at line 418 of file NE10_types.h.
ne10_float32_t* ne10_iir_lattice_instance_f32_t::pkCoeffs |
Points to the reflection coefficient array.
The array is of length numStages.
Definition at line 420 of file NE10_types.h.
ne10_float32_t* ne10_iir_lattice_instance_f32_t::pState |
Points to the state variable array.
The array is of length numStages + blockSize -1.
Definition at line 419 of file NE10_types.h.
ne10_float32_t* ne10_iir_lattice_instance_f32_t::pvCoeffs |
Points to the ladder coefficient array.
The array is of length numStages+1.
Definition at line 421 of file NE10_types.h.