Static functions for doing various Fourier Operations.
Static member | Description |
Full Usage:
ComplexFFT.FFT(data, length, direction)
Parameters:
float32[]
-
length : int
-
direction : FourierDirection
-
|
Compute a 1D fast Fourier transform of a dataset of complex numbers (as pairs of float's).
|
Full Usage:
ComplexFFT.FFT(data, length, direction)
Parameters:
ComplexFloat[]
-
length : int
-
direction : FourierDirection
-
|
Compute a 1D fast Fourier transform of a dataset of complex numbers.
|
Full Usage:
ComplexFFT.FFT(data, direction)
Parameters:
ComplexFloat[]
-
direction : FourierDirection
-
|
Compute a 1D fast Fourier transform of a dataset of complex numbers.
|
Full Usage:
ComplexFFT.FFT(data, length, direction)
Parameters:
Complex[]
-
length : int
-
direction : FourierDirection
-
|
Compute a 1D fast Fourier transform of a dataset of complex numbers.
|
Full Usage:
ComplexFFT.FFT2(data, xLength, yLength, direction)
Parameters:
float32[]
-
xLength : int
-
yLength : int
-
direction : FourierDirection
-
|
Compute a 2D fast fourier transform on a data set of complex numbers (represented as pairs of floats)
|
Full Usage:
ComplexFFT.FFT2(data, xLength, yLength, direction)
Parameters:
ComplexFloat[]
-
xLength : int
-
yLength : int
-
direction : FourierDirection
-
|
Compute a 2D fast fourier transform on a data set of complex numbers
|
Full Usage:
ComplexFFT.FFT2(data, xLength, yLength, direction)
Parameters:
Complex[]
-
xLength : int
-
yLength : int
-
direction : FourierDirection
-
|
Compute a 2D fast fourier transform on a data set of complex numbers
|
Full Usage:
ComplexFFT.FFT3(data, xLength, yLength, zLength, direction)
Parameters:
ComplexFloat[]
-
xLength : int
-
yLength : int
-
zLength : int
-
direction : FourierDirection
-
|
Compute a 3D fast fourier transform on a data set of complex numbers
|
Full Usage:
ComplexFFT.FFT3(data, xLength, yLength, zLength, direction)
Parameters:
Complex[]
-
xLength : int
-
yLength : int
-
zLength : int
-
direction : FourierDirection
-
|
Compute a 3D fast fourier transform on a data set of complex numbers
|
Full Usage:
ComplexFFT.FFT_Quick(data, length, direction)
Parameters:
float32[]
-
length : int
-
direction : FourierDirection
-
|
Compute a 1D fast Fourier transform of a dataset of complex numbers (as pairs of float's).
|
Full Usage:
ComplexFFT.FFT_Quick(data, length, direction)
Parameters:
ComplexFloat[]
-
length : int
-
direction : FourierDirection
-
|
Compute a 1D fast Fourier transform of a dataset of complex numbers.
|
Full Usage:
ComplexFFT.FFT_Quick(data, length, direction)
Parameters:
Complex[]
-
length : int
-
direction : FourierDirection
-
|
Compute a 1D fast Fourier transform of a dataset of complex numbers.
|
Full Usage:
ComplexFFT.RFFT(data, direction)
Parameters:
float32[]
-
direction : FourierDirection
-
|
Compute a 1D real-symmetric fast fourier transform.
|
Full Usage:
ComplexFFT.RFFT(data, length, direction)
Parameters:
float32[]
-
length : int
-
direction : FourierDirection
-
|
Compute a 1D real-symmetric fast fourier transform.
|