Skip to content
Snippets Groups Projects
Commit e3539134 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Support 20b FIR coefficients.

parent 543403ed
No related branches found
No related tags found
1 merge request!231Use applications/lofar2/model/pfs_coeff_final.m to create FIR coefficients for...
......@@ -97,8 +97,8 @@
% h) Support loading and analysing LOFAR1 coefficients for comparison
% i) Support changing the half power subband band width via relative_bw = 1
% j) Save plots in plots/
% k) Create FIR coefficients for 16b or 18b Kaiser (has sharp band edge) and
% Hanning (has almost flat DC response for all poly phases)
% k) Create FIR coefficients for 16b, 18b, 20b Kaiser (has sharp band edge)
% and Hanning (has almost flat DC response for all poly phases)
close all;
clear all;
......@@ -121,6 +121,7 @@ if not(reproduce_ftf)
% word size for coefficients
nof_bits = 16;
nof_bits = 18;
nof_bits = 20;
% window function for coefficients
kaiser_beta = 1;
use_window = 'Kaiser';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment