Click or drag to resize

FloatGeneral1DFFTFFT(Single, Single) Method

Using the given configuration, computes the real forward FFT of vin

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void FFT(
	float[] vin,
	ref float[] vout
)

Parameters

vin  Single
Real input signal data.
vout  Single
The FFT of vin.
Remarks
The result of a real 1D FFT is a complex-conjugate symmetric vector. This vector is returned in vout in a packed format. See documentation on the packing layout to correctly extract the resulting signal.
See Also