Computes the in-place forward FFT of the signal vinout.

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

Syntax

C#
public void FFTInPlace(
	FloatMatrix minout
)
Visual Basic (Declaration)
Public Sub FFTInPlace ( _
	minout As FloatMatrix _
)
Visual C++
public:
void FFTInPlace(
	FloatMatrix^ minout
)

Parameters

minout
Type: CenterSpace.NMath.Core..::.FloatMatrix
The input signal and output FFT.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown when the input/output matrix has non-unit stride. Slices of matrices are not allowed.
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if the input/output array is smaller than the configured size of this FFT.

See Also