Still not working
This commit is contained in:
@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user