Computes the foward FFT of vin.

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

Syntax

C#
public FloatVector FFT(
	FloatVector vin
)
Visual Basic (Declaration)
Public Function FFT ( _
	vin As FloatVector _
) As FloatVector
Visual C++
public:
FloatVector^ FFT(
	FloatVector^ vin
)

Parameters

vin
Type: CenterSpace.NMath.Core..::.FloatVector
Input signal data.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if the input vector does not have unit stride. Use the FloatGeneral1DFFT class to transform non-unit strided signals.
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if the input vector length, vin is less then the FFT length. Zero pad your input vector if necessary.

See Also