Click or drag to resize

DoubleComplexForward1DFFTFFT(DoubleComplexVector, DoubleComplexVector) Method

Computes the 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(
	DoubleComplexVector vin,
	ref DoubleComplexVector vout
)

Parameters

vin  DoubleComplexVector
Input signal data.
vout  DoubleComplexVector
Pre-allocated FFT of vin.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the input and output vectors don't have unit stride. Use the DoubleGeneral1DFFT class to transform non-unit strided signals.
InvalidArgumentException Thrown if the output array, vout is not large enough to contain the resultant FFT.
See Also