plenty of new code and stuff - mostly AI slop and Dissertation. I will move to my own git now

This commit is contained in:
Silas Oettinghaus
2026-07-08 21:35:53 +02:00
parent 33ec5b3116
commit 699d146fb5
6 changed files with 2 additions and 2 deletions

View File

@@ -182,8 +182,8 @@ classdef FFE_DCremoval_adaptive_mu < handle
end end
if obj.smoothing_buffer_length > 0 if obj.smoothing_buffer_length > 0
smoothing_buffer = zeros(1,obj.smoothing_buffer_length); smoothing_buffer = ones(1,obj.smoothing_buffer_length) .* mean(obj.constellation);
smoothing_mean = 0; smoothing_mean = mean(obj.constellation);
end end
P_err = 0; P_err = 0;