Click or drag to resize

DoubleSymmetricBackward1DFFTFFTInPlace(Double) Method

Note: This API is now obsolete.

Computes the backward FFT of each row in arrayinout and returns the complex conjugate symmetric results in-place in a packed format. Use a DoubleSymmetricSignalReader instance to extract individual signal FFT's out of the resultant array.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[ObsoleteAttribute("Use FFTInPlaceArray() instead.")]
public void FFTInPlace(
	double[,] arrayinout
)

Parameters

arrayinout  Double
Array of rows of input signals.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown when the signal data (each row) is shorter than this DoubleSymmetricBackward1DFFT instance.
Remarks
This is faster than computing each FFT one row at a time using a signal vector if signals are all of the same length.
See Also