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

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

Syntax

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

Parameters

vinout
Type: CenterSpace.NMath.Core..::.DoubleComplexVector
The input signal and output FFT.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException The input/output vector must have unit stride. Use the DoubleGeneral1DFFT class to transform non-unit strided signals.
CenterSpace.NMath.Core..::.MismatchedSizeException Thrown when the signal data is shorter than this DoubleComplexBackward1DFFT instance.

See Also