|
FourierTransformFFT2 Method
|
Two dimensional Fast Fourier Transform.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static void FFT2(
Complex[,] data,
FourierTransformDirection direction
)
Public Shared Sub FFT2 (
data As Complex(,),
direction As FourierTransformDirection
)
Request Example
View SourceParameters
- data
- Type: System.NumericsComplex
Data to transform. - direction
- Type: Accord.MathFourierTransformDirection
Transformation direction.
Exceptions Exception | Condition |
---|
ArgumentException | Incorrect data length. |
Remarks Note |
---|
The method accepts data array of 2n size
only in each dimension, where n may vary in the [1, 14] range. For example, 16x16 array
is valid, but 15x15 is not. |
See Also