Using the given configuration, computes the forward 1D FFT of each row in arrayinout and returns the results in-place.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[ObsoleteAttribute("Use FFTInPlaceArray() instead.")]
public void FFTInPlace(
	DoubleComplex[,] arrayinout
)
Visual Basic (Declaration)
<ObsoleteAttribute("Use FFTInPlaceArray() instead.")> _
Public Sub FFTInPlace ( _
	arrayinout As DoubleComplex(,) _
)
Visual C++
[ObsoleteAttribute(L"Use FFTInPlaceArray() instead.")]
public:
void FFTInPlace(
	array<DoubleComplex,2>^ arrayinout
)

Parameters

arrayinout
Type: array< CenterSpace.NMath.Core..::.DoubleComplex ,2>[,](,)[,]
The double complex matrix of rows of input signals.

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.

See Also