Computes the forward out-of-place FFT of vin.

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

Syntax

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

Parameters

min
Type: array< System..::.Double ,2>[,](,)[,]
The input signal data.
mout
Type: array< System..::.Double ,2>[,](,)[,] %
Pre-allocated FFT of min.

Exceptions

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

See Also