Click or drag to resize

FloatForward1DFFTFFT(Single, Single) Method

Computes foward FFT of vin and places the result in vout

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

Parameters

vin  Single
The input signal data.
vout  Single
The FFT of vin.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the output array, vout is not large enough to contain the resultant FFT.
InvalidArgumentException Thrown if the input vector length, vin is less then the FFT length. Zero pad your input vector if necessary.
See Also