[][src]Function cmsis_dsp_sys_pregenerated::arm_iir_lattice_init_f32

pub unsafe extern "C" fn arm_iir_lattice_init_f32(
    S: *mut arm_iir_lattice_instance_f32,
    numStages: u16,
    pkCoeffs: *mut float32_t,
    pvCoeffs: *mut float32_t,
    pState: *mut float32_t,
    blockSize: u32
)

@brief Initialization function for the floating-point IIR lattice filter. @param[in] S points to an instance of the floating-point IIR lattice structure. @param[in] numStages number of stages in the filter. @param[in] pkCoeffs points to the reflection coefficient buffer. The array is of length numStages. @param[in] pvCoeffs points to the ladder coefficient buffer. The array is of length numStages+1. @param[in] pState points to the state buffer. The array is of length numStages+blockSize-1. @param[in] blockSize number of samples to process.