NMSIS-DSP  Version 1.2.0
NMSIS DSP Software Library
riscv_fir_instance_f32 Struct Reference

Instance structure for the floating-point FIR filter. More...

Data Fields

uint16_t numTaps
 
float32_t * pState
 
const float32_t * pCoeffs
 

Detailed Description

Instance structure for the floating-point FIR filter.

Examples
riscv_fir_example_f32.c, and riscv_signal_converge_example_f32.c.

Field Documentation

◆ numTaps

uint16_t riscv_fir_instance_f32::numTaps

number of filter coefficients in the filter.

◆ pCoeffs

const float32_t* riscv_fir_instance_f32::pCoeffs

points to the coefficient array. The array is of length numTaps.

◆ pState

float32_t* riscv_fir_instance_f32::pState

points to the state variable array. The array is of length numTaps+blockSize-1.