Still not working

This commit is contained in:
2025-09-21 22:43:24 +02:00
parent 01e3657b55
commit a300386f7f
8 changed files with 5695 additions and 4848 deletions

View File

@ -13,7 +13,6 @@ pub struct RaderFFT {
output_buffer: Box<[Complex32]>,
size: usize,
g: usize,
// Fourrier transform of the exponential terms
convolution_operand: Box<[Complex32]>,
@ -33,10 +32,9 @@ impl DFT for RaderFFT {
output_buffer: vec![Complex32::zero(); size].into_boxed_slice(),
size,
g,
convolution_operand: compute_convolution_operand(size, &permutation),
convolution_fft: Box::new(NaiveDFT::create(size - 1)),
convolution_fft: create_fft(size - 1),
permutation,
}
}