📄 fixedpointfir.h
字号:
//
// Project: Example 4.20: fixed-point implementation of FIR filter - Chapter 4
// File name: fixedPointFir.h
//
// Description: This is the header file for fixed-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 40
void fixedPointBlockFir(short *x, short blkSize,
short *h, short order,
short *y,
short *w, short *index);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -