Core
This manual is preliminary and incomplete.
While our Core implementation implements all functions given in the standard we are still working on completing this documentation.
Please refer to the VSIPL standard for a complete function reference of the Core profile until we have completed work on this documentation.
5.4.2 vsip_dfir_reset_p - Reset a FIR Filter
void vsip_fir_reset_f(vsip_fir_f *filt);
void vsip_cfir_reset_f(vsip_cfir_f *filt);
Description
This function resets the specified FIR filter to its initial state.
Parameters
Example
vsip_fir_f *fir_filter;
// Assuming fir_filter has been properly initialized
vsip_fir_reset_f(fir_filter);