我使用 Matlab 设计了一个非常简单的低通巴特沃斯滤波器。下面的代码片段演示了我所做的。
fs = 2.1e6;
flow = 44 * 1000;
fNorm = flow / (fs / 2);
[b,a] = butter(10, fNorm, 'low');
在[b,a]中存储了滤波器系数。我想将 [b,a] 获取为整数,以便我可以使用在线 HDL 代码生成器在 Verilog 中生成代码。
Matlab [b,a] 值似乎太小而无法与在线代码生成器一起使用(服务器端 Perl 脚本拒绝生成带有系数的代码),我想知道是否可以获得 [b, a] 以可用作正确输入的形式。
我在 Matlab 中得到的 a 系数是:
1.0000
-9.1585
37.7780
-92.4225
148.5066
-163.7596
125.5009
-66.0030
22.7969
-4.6694
0.4307
我在 Matlab 中得到的 b 系数是:
1.0167e-012
1.0167e-011
4.5752e-011
1.2201e-010
2.1351e-010
2.5621e-010
2.1351e-010
1.2201e-010
4.5752e-011
1.0167e-011
1.0167e-012
使用在线生成器,我想设计一个具有 12 位位宽和 I 或 II 滤波器形式的滤波器。我不知道上面链接中的“小数位”是什么意思。
使用上面列出的 [b,a] 系数运行代码生成器 (http://www.spiral.net/hardware/filter.html),小数位设置为 20,位宽为 12,我收到以下运行错误:
Integer A constants: 1048576 -9603383 39613104 -96912015 155720456 -171714386 131597231 -69209161 23904282 -4896220 451621
Integer B constants: 0 0 0 0 0 0 0 0 0 0 0
Error: constants wider than 26 bits are not allowed, offending constant = -69209161, effective bitwidth = 7 mantissa + 20 fractional = 27 total.
An error has occurred - please revise the input parameters.
我该如何更改我的设计,以免发生此错误?
更新: 使用 Matlab 生成 6 阶巴特沃斯滤波器,我得到以下系数:
为一个:
1.0000
-5.4914
12.5848
-15.4051
10.6225
-3.9118
0.6010
对于 b:
0.0064e-005
0.0382e-005
0.0954e-005
0.1272e-005
0.0954e-005
0.0382e-005
0.0064e-005
运行在线代码生成器(http://www.spiral.net/hardware/filter.html),我现在收到以下错误(小数位为 8,位宽为 20):
./iirGen.pl -A 256 '-1405' '3221' '-3943' '2719' '-1001' '153' -B '0' '0' '0' '0' '0' '0' '0' -moduleName acm_filter -fractionalBits 8 -bitWidth 20 -inData inData -inReg -outReg -outData outData -clk clk -reset reset -reset_edge negedge -filterForm 1 -debug -outFile ../outputs/filter_1330617505.v 2>&1
At least 1 non-zero-valued constant is required. Please check the inputs and try again.
也许 b 系数太小,或者代码生成器 (http://www.spiral.net/hardware/filter.html) 想要另一种格式的 [b,a]?
更新:
也许我需要做的是将 [b,a] 系数按小数位数缩放,以获得整数形式的系数。
a .* 2^12
b .* 2^12
但是,我仍然认为 b 系数非常小。我在这里做错了什么?
也许另一种类型的过滤器(或过滤器设计方法)会更合适?有人可以提出建议吗?
更新: 正如 Jason R 和 Christopher Felton 在下面的评论中所建议的,SOS 过滤器会更合适。我现在已经编写了一些 Matlab 代码来获取 SOS 过滤器。
fs = 2.1e6;
flow = 44 * 1000;
fNorm = flow / (fs / 2);
[A,B,C,D] = butter(10, fNorm, 'low');
[sos,g] = ss2sos(A,B,C,D);
我得到的 SOS 矩阵是:
1.0000 3.4724 3.1253 1.0000 -1.7551 0.7705
1.0000 2.5057 1.9919 1.0000 -1.7751 0.7906
1.0000 1.6873 1.0267 1.0000 -1.8143 0.8301
1.0000 1.2550 0.5137 1.0000 -1.8712 0.8875
1.0000 1.0795 0.3046 1.0000 -1.9428 0.9598
是否仍然可以使用 Verilog 代码生成工具 (http://www.spiral.net/hardware/filter.html) 来实现这个 SOS 过滤器,或者我应该简单地手动编写 Verilog?有没有好的参考资料?
我想知道在这种情况下使用 FIR 滤波器是否会更好。
此外:递归 IIR 滤波器可以通过将系数表示为分数来使用整数数学来实现。(有关详细信息,请参阅 Smith 出色的 DSP 信号处理书:http ://www.dspguide.com/ch19/5.htm )
以下 Matlab 程序使用 Matlab rat() 函数将巴特沃斯滤波器系数转换为小数部分。然后如评论中所述,二阶部分可用于数字实现过滤器(http://en.wikipedia.org/wiki/Digital_biquad_filter)。
% variables
% variables
fs = 2.1e6; % sampling frequency
flow = 44 * 1000; % lowpass filter
% pre-calculations
fNorm = flow / (fs / 2); % normalized freq for lowpass filter
% uncomment this to look at the coefficients in fvtool
% compute [b,a] coefficients
% [b,a] = butter(7, fNorm, 'low');
% fvtool(b,a)
% compute SOS coefficients (7th order filter)
[z,p,k] = butter(7, fNorm, 'low');
% NOTE that we might have to scale things to make sure
% that everything works out well (see zp2sos help for 'up' and 'inf' options)
sos = zp2sos(z,p,k, 'up', 'inf');
[n,d] = rat(sos);
sos_check = n ./ d; % this should be the same as SOS matrix
% by here, n is the numerator and d is the denominator coefficients
% as an example, write the the coefficients into a C code header file
% for prototyping the implementation
% write the numerator and denominator matices into a file
[rownum, colnum] = size(n); % d should be the same
sections = rownum; % the number of sections is the same as the number of rows
fid = fopen('IIR_coeff.h', 'w');
fprintf(fid, '#ifndef IIR_COEFF_H\n');
fprintf(fid, '#define IIR_COEFF_H\n\n\n');
for i = 1:rownum
for j = 1:colnum
if(j <= 3) % b coefficients
bn = ['b' num2str(j-1) num2str(i) 'n' ' = ' num2str(n(i,j))];
bd = ['b' num2str(j-1) num2str(i) 'd' ' = ' num2str(d(i,j))];
fprintf(fid, 'const int32_t %s;\n', bn);
fprintf(fid, 'const int32_t %s;\n', bd);
end
if(j >= 5) % a coefficients
if(j == 5)
colstr = '1';
end
if(j == 6)
colstr = '2';
end
an = ['a' colstr num2str(i) 'n' ' = ' num2str(n(i,j))];
ad = ['a' colstr num2str(i) 'd' ' = ' num2str(d(i,j))];
fprintf(fid, 'const int32_t %s;\n', an);
fprintf(fid, 'const int32_t %s;\n', ad);
end
end
end
% write the end of the file
fprintf(fid, '\n\n\n#endif');
fclose(fid);