fft_c2r

Function fft_c2r 

Source
pub fn fft_c2r<T>(
    input: &Array<T>,
    norm_factor: f64,
    is_odd: bool,
) -> Array<T::BaseType>
Expand description

1d Complex to Real fast fourier transform

§Parameters

  • input is the input Array
  • norm_factor is the normalization factor to be applied before fft is applied
  • is_odd signifies if the output should be even or odd size

§Return Values

Complex Array