- 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,11 @@
N = 1:4;
S = 4;
L = 1:4;
Complexity_N = (N+1).*S.^(1+1);
Complexity_L = (1+1).*S.^(L+1);
figure;
plot(N,Complexity_N)
hold on
plot(L,Complexity_L)
hold off