Computes the backward 2D FFT of min and places the result in mout
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public void FFT( DoubleComplexMatrix min, ref DoubleComplexMatrix mout ) |
| Visual Basic (Declaration) |
|---|
Public Sub FFT ( _ min As DoubleComplexMatrix, _ ByRef mout As DoubleComplexMatrix _ ) |
| Visual C++ |
|---|
public: void FFT( DoubleComplexMatrix^ min, DoubleComplexMatrix^% mout ) |
Parameters
- min
- Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
Input signal data.
- mout
- Type:
CenterSpace.NMath.Core..::.DoubleComplexMatrix
%
Pre-allocated FFT of min.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the input and output matrices have non-unit stride. |
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the input matrix is smaller than the configured size of this FFT. |
| CenterSpace.NMath.Core..::.InvalidArgumentException | The dimensions of the output matrix, mout are too small to contain the resultant FFT. |