Using the given configuration, computes the in-place real forward FFT of vinout

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

Syntax

C#
public void FFTInPlace(
	double[] vinout
)
Visual Basic (Declaration)
Public Sub FFTInPlace ( _
	vinout As Double() _
)
Visual C++
public:
void FFTInPlace(
	array<double>^ vinout
)

Parameters

vinout
Type: array< System..::.Double >[]()[]
The real signal data and complex conjugate symmetric packed output FFT.

Remarks

The result of a real 1D FFT is a complex-conjugate symmetric vector. This vector is returned in-placed in a packed format. See documentation on the packing layout to correctly extract the resulting signal.

See Also