Click or drag to resize

DoubleForward2DFFTFFT(DoubleMatrix, DoubleMatrix) Method

Computes the foward FFT of vin and places the result in vout

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void FFT(
	DoubleMatrix min,
	ref DoubleMatrix mout
)

Parameters

min  DoubleMatrix
Input signal data.
mout  DoubleMatrix
Pre-allocated FFT of vin.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown when the input/output matrix has non-unit stride. Slices of matrices are not allowed.
InvalidArgumentException Thrown if the input array is smaller than the configured size of this FFT.
InvalidArgumentException Thrown if the dimensions of the output matrix, mout are too small to contain the resultant FFT.
See Also