EQ adaptive DC removal

This commit is contained in:
Silas Oettinghaus
2024-08-16 10:21:01 +02:00
parent 793a5b7efd
commit 17a1dfbbd5
2 changed files with 12 additions and 4 deletions

View File

@@ -8,9 +8,10 @@ Bits = load("projects/MPI_August/bits.mat","Bits");
Bits = Bits.Bits;
mdc = [1e-3,1e-2,2e-2,3e-2,4e-2,5e-2,1e-1];
mdc = [0.6, 0.7, 0.8, 1, 1.2];
for m = 1:numel(mdc)
Eq = FFE_DCremoval("epochs_tr",5,"epochs_dd",5,"len_tr",4096*2,"mu_dd",1e-4,"mu_tr",0,"order",25,"sps",2,"decide",0,"mu_dc",mdc(m));
Eq = FFE_DCremoval("epochs_tr",5,"epochs_dd",5,"len_tr",4096*2,"mu_dd",1e-4,"mu_tr",0,"order",25,"sps",2,"decide",0,"mu_dc",mdc(m),"dc_buffer_len",112);
[EQ_sig] = Eq.process(Scope_sig,Symbols);
%%%%% DEMAP %%%%%%