floatingpointfir.h

来自「CHP 4 - Real-Time Digital Signal Process」· C头文件 代码 · 共 18 行

H
18
字号
// 
//  Project: Example 4.18: floating-point implementation of FIR filter - Chapter 4
//  File name: floatPointFir.h   
//
//  Description: This is the header file for the floating-point FIR filter
//
//  For the book "Real Time Digital Signal Processing: 
//                Implementation and Application, 2nd Ed"
//                By Sen M. Kuo, Bob H. Lee, and Wenshun Tian
//                Publisher: John Wiley and Sons, Ltd
//


#define  NUM_TAPS   48
#define  NUM_DATA   80

void floatPointFir(float *x, float *h, short order, float *y, float *w);

⌨️ 快捷键说明

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