|  | DoubleComplexForward1DFFTFFTInPlace(DoubleComplex) Method | 
Note: This API is now obsolete.
            Computes the forward FFT of each row in arrayinout and returns the results in-place.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntax[ObsoleteAttribute("Use FFTInPlaceArray() instead.")]
public void FFTInPlace(
	DoubleComplex[,] arrayinout
)<ObsoleteAttribute("Use FFTInPlaceArray() instead.")>
Public Sub FFTInPlace ( 
	arrayinout As DoubleComplex(,)
)public:
[ObsoleteAttribute(L"Use FFTInPlaceArray() instead.")]
void FFTInPlace(
	array<DoubleComplex,2>^ arrayinout
)
[<ObsoleteAttribute("Use FFTInPlaceArray() instead.")>]
member FFTInPlace : 
        arrayinout : DoubleComplex[,] -> unit Parameters
- arrayinout  DoubleComplex
- Array of rows of input signals. 
 Exceptions
Exceptions| Exception | Condition | 
|---|
| MismatchedSizeException | Thrown when the signal data (each row) is shorter than this DoubleComplexForward1DFFT instance. | 
 Remarks
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
See Also