【 FPGA 】FIR 滤波器之Single-rate FIR滤波器的系数数据(Filter Coefficient Data)

版权声明:本博客内容来自于个人学习过程中的总结,参考了互联网以及书本、论文等上的内容,仅供学习交流使用,如有侵权,请联系我会重写!转载请注明地址! https://blog.csdn.net/Reborn_Lee/article/details/82916697

首先要明确什么是单速率 FIR 滤波器?

The basic FIR filter core is a single-rate (input sample rate = output sample rate) finite impulse response filter. This is the simplest of filter types and is the default at the start of parametrization in the Vivado IDE.

基本FIR滤波器IP核是单速率(输入采样率=输出采样率)有限脉冲响应滤波器。 这是最简单的滤波器类型,是Vivado IDE中参数化开始时的默认值。

这就是手册上对于Single-rate FIR的介绍,篇幅极少,但貌似已经够了,因为它是IP核设计时的一种默认情况。

下面来看看它的系数文件:

单速率FIR滤波器的系数文件很简单,由一行头加上滤波器系数数据组成。

For example, the filter coefficient file for an 8-tap filter using a base-10 representation for the coefficient values is shown in
Figure 3-38:

例如,使用系数值的基数10表示的8抽头滤波器的滤波器系数文件如图3-38所示:

无论滤波器具有正对称或负对称,系数文件都应包含完整的系数值集。图3-39所示的非对称脉冲响应的滤波系数文件如图3-40所示。

以脉冲响应为特征的负对称滤波器系数文件如图3-41所示。

猜你喜欢

转载自blog.csdn.net/Reborn_Lee/article/details/82916697