![]() |
Project Ne10
An Open Optimized Software Library Project for the ARM Architecture
|
Instance structure for the floating-point FIR filter. More...
#include <NE10_types.h>
Public Attributes | |
ne10_uint16_t | numTaps |
Length of the filter. More... | |
ne10_float32_t * | pState |
Points to the state variable array. More... | |
ne10_float32_t * | pCoeffs |
Points to the coefficient array. More... | |
Instance structure for the floating-point FIR filter.
Definition at line 364 of file NE10_types.h.
ne10_uint16_t ne10_fir_instance_f32_t::numTaps |
Length of the filter.
Definition at line 366 of file NE10_types.h.
ne10_float32_t* ne10_fir_instance_f32_t::pCoeffs |
Points to the coefficient array.
The array is of length numTaps.
Definition at line 368 of file NE10_types.h.
ne10_float32_t* ne10_fir_instance_f32_t::pState |
Points to the state variable array.
The array is of length numTaps+maxBlockSize-1.
Definition at line 367 of file NE10_types.h.