Computes the out-of-place backward FFT of vin and places the result in vout

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

Syntax

C#
public void FFT(
	float[] vin,
	float[] vout
)
Visual Basic (Declaration)
Public Sub FFT ( _
	vin As Single(), _
	vout As Single() _
)
Visual C++
public:
void FFT(
	array<float>^ vin, 
	array<float>^ vout
)

Parameters

vin
Type: array< System..::.Single >[]()[]
The input signal data.
vout
Type: array< System..::.Single >[]()[]
The FFT of vin.

See Also