Computes the foward 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( FloatMatrix min, ref FloatMatrix mout ) |
| Visual Basic (Declaration) |
|---|
Public Sub FFT ( _ min As FloatMatrix, _ ByRef mout As FloatMatrix _ ) |
| Visual C++ |
|---|
public: void FFT( FloatMatrix^ min, FloatMatrix^% mout ) |
Parameters
- min
- Type: CenterSpace.NMath.Core..::.FloatMatrix
Input signal data.
- mout
- Type:
CenterSpace.NMath.Core..::.FloatMatrix
%
Pre-allocated FFT of vin.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown when the input/output matrix has non-unit stride. Slices of matrices are not allowed. |
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the input array is smaller than the configured size of this FFT. |
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the dimensions of the output matrix, mout are too small to contain the resultant FFT. |