Click or drag to resize

FloatForward2DFFTFFT(FloatMatrix, FloatMatrix) 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(
	FloatMatrix min,
	ref FloatMatrix mout
)

Parameters

min  FloatMatrix
Input signal data.
mout  FloatMatrix
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