[−][src]Function arrayfire::ifft3
pub fn ifft3<T>(
input: &Array<T>,
norm_factor: f64,
odim0: i64,
odim1: i64,
odim2: i64
) -> Array<T::ComplexOutType> where
T: HasAfEnum + FloatingPoint,
<T as HasAfEnum>::ComplexOutType: HasAfEnum,
Inverse fast fourier transform for 3d signals
Parameters
input
is the input Arraynorm_factor
is the normalization factor with which the input is scaled before the transformation is appliedodim0
is the length of output signal first dimension - used for either truncating or padding the inputodim1
is the length of output signal second dimension - used for either truncating or padding the inputodim2
is the length of output signal third dimension - used for either truncating or padding the input
Return Values
Transformed Array