⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 floatingpointfir.h

📁 CHP 4 - Real-Time Digital Signal Processing: Implementations and Applications, Second Edition by Sen
💻 H
字号:
/* 
//  Project: Example 4.19: floating-point implementation of block FIR filter - Chapter 4
//  File name: floatPointFir.h   
//
//  Description: This is the header file for the floating-point block 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 floatPointBlockFir(float *x, short blkSize, 
                        float *h, short order, 
                        float *y, 
                        float *w, short *index);

⌨️ 快捷键说明

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