Correlation bfsk fir design

This commit is contained in:
2025-09-28 20:41:13 +02:00
parent 4a6d79c0b4
commit 1445887f2f
15 changed files with 4032 additions and 137 deletions

View File

@ -34,7 +34,6 @@ impl DFTAlgorithm for Rader2FFT {
let g = compute_prime_primitive_root(size);
let permutations: Box<[usize]> = (0..(size - 1)).map(|i| exp_mod(g, i + 1, size)).collect();
let sub_size = next_pow2(2 * size - 3);
println!("{}", sub_size);
// Compute fourrier transform of twiddle factors
let twiddle_factors = (0..sub_size)