Computes backward 2D FFT of min and places the result in mout

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public void FFT(
	FloatComplex[,] min,
	ref FloatComplex[,] mout
)
Visual Basic (Declaration)
Public Sub FFT ( _
	min As FloatComplex(,), _
	ByRef mout As FloatComplex(,) _
)
Visual C++
public:
void FFT(
	array<FloatComplex,2>^ min, 
	array<FloatComplex,2>^% mout
)

Parameters

min
Type: array< CenterSpace.NMath.Core..::.FloatComplex ,2>[,](,)[,]
The input signal data.
mout
Type: array< CenterSpace.NMath.Core..::.FloatComplex ,2>[,](,)[,] %
The FFT of min.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if the input array is smaller than the configured size of this FFT.
CenterSpace.NMath.Core..::.InvalidArgumentException The dimensions of the output array, mout are too small to contain the resultant FFT.

See Also