iir_filters_fourth_order.h

来自「这是一个C语言实现的一阶到六阶的IIR滤波器程序。用于TI TMS320C541」· C头文件 代码 · 共 35 行

H
35
字号
/*****************************************************************************/
/*                                                                           */
/* FILENAME                                                                  */
/* 	IIR_filters_fourth_order.h                                               */
/*                                                                           */
/* DESCRIPTION                                                               */
/*   Header file for fourth order IIR filters type I and type II.            */
/*                                                                           */
/* REVISION                                                                  */
/*   Revision: 1.00	                                                         */
/*   Author  : Richard Sikora                                                */
/*---------------------------------------------------------------------------*/
/*                                                                           */
/* HISTORY                                                                   */
/*   Revision 1.00                                                           */
/*   20th November 2002. Created by Richard Sikora.                          */
/*                                                                           */
/*****************************************************************************/

#ifndef IIR_FILTERS_FOURTH_ORDER_H
#define IIR_FILTERS_FOURTH_ORDER_H

signed int fourth_order_IIR_direct_form_I( const signed int * coefficients, 
                                                 signed int input);

signed int fourth_order_IIR_direct_form_II( const signed int * coefficients, 
                                                  signed int input);


#endif

/*****************************************************************************/
/* End of IIR_filters_fourth_order.h                                         */
/*****************************************************************************/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?