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

Support 20b FIR coefficients.

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