Computes the out-of-place backward FFT of vin and places the result in vout
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public void FFT( DoubleVector vin, ref DoubleVector vout ) |
| Visual Basic (Declaration) |
|---|
Public Sub FFT ( _ vin As DoubleVector, _ ByRef vout As DoubleVector _ ) |
| Visual C++ |
|---|
public: void FFT( DoubleVector^ vin, DoubleVector^% vout ) |
Parameters
- vin
- Type: CenterSpace.NMath.Core..::.DoubleVector
Input signal data.
- vout
- Type:
CenterSpace.NMath.Core..::.DoubleVector
%
Pre-allocated FFT of vin.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the input and output vectors don't have unit stride. Use the DoubleGeneral1DFFT class to transform non-unit strided signals. |