fft3_r2c

Function fft3_r2c 

Source
pub fn fft3_r2c<T>(
    input: &Array<T>,
    norm_factor: f64,
    pad0: i64,
    pad1: i64,
    pad2: i64,
) -> Array<Complex<T>>
Expand description

3d Real to Complex fast fourier transform

§Parameters

  • input is the input Array
  • norm_factor is the normalization factor to be applied before fft is applied
  • pad0 is the padding along 0th dimension of Array
  • pad1 is the padding along 1st dimension of Array
  • pad2 is the padding along 2nd dimension of Array

§Return Values

Complex Array