- Class folder 'Timing Recovery' with different timing recoveries
- Minimal example for the timing recovery on the FSO data
- New evaluation scripts in the FSO project folder
This commit is contained in:
magf
2026-02-02 10:56:12 +01:00
parent 798a0ca3b3
commit 005e821131
28 changed files with 3685 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
time_shift = -2:0.1:2;
BER = zeros(1,length(time_shift));
for i = 1:length(time_shift)
BER_value = first_analysis_time_shift(time_shift(i));
BER(i) = BER_value;
close all
end
figure;
plot(time_shift,BER)