Click or drag to resize

FloatSymmetricBackward1DFFTFFT(FloatVector, FloatVector) Method

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: 7.4
Syntax
public void FFT(
	FloatVector vin,
	ref FloatVector vout
)

Parameters

vin  FloatVector
Input signal data.
vout  FloatVector
Pre-allocated FFT of vin.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the input and output vectors don't have unit stride. Use the FloatGeneral1DFFT class to transform non-unit strided signals.
See Also