Computes the foward FFT of vin.
Namespace:
CenterSpace.NMath.CoreAssembly: 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
| Exception | Condition |
|---|---|
| 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. |