Click or drag to resize

DoubleComplexBackward1DFFTFFTInPlaceArray Method

Computes the backward FFT of each row in arrayinout and returns the results in-place.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void FFTInPlaceArray(
	DoubleComplex[,] arrayinout
)

Parameters

arrayinout  DoubleComplex
Array of rows of input signals.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown when the signal data (each row) is shorter than this DoubleComplexBackward1DFFT instance.
Remarks
If signals are all the same length, this is computationally more efficient than computing each FFT one at a time using a signal vector. Replaces deprecate FFTInPlace(DoubleComplex[,] arrayinout)
See Also