  | FloatGeneral1DFFTFFTInPlaceArray Method | 
            Using the given configuration, computes the forward 1D FFT of each row 
            in arrayinout and returns the results in-place.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void FFTInPlaceArray(
	FloatComplex[,] arrayinout
)
Public Sub FFTInPlaceArray ( 
	arrayinout As FloatComplex(,)
)
public:
void FFTInPlaceArray(
	array<FloatComplex,2>^ arrayinout
)
member FFTInPlaceArray : 
        arrayinout : FloatComplex[,] -> unit Parameters
- arrayinout  FloatComplex
 - The float 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.
            
            Replaces deprecated FFTInPlace(FloatComplex[,] arrayinout).
            
See Also