Generates the appropriate reader to unpack the packed complex conjugate symmetric FFT's computed by this class.

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

Syntax

C#
public DoubleSymmetricSignalReader GetSignalReaderForArray(
	double[,] packedfftarray
)
Visual Basic (Declaration)
Public Function GetSignalReaderForArray ( _
	packedfftarray As Double(,) _
) As DoubleSymmetricSignalReader
Visual C++
public:
DoubleSymmetricSignalReader^ GetSignalReaderForArray(
	array<double,2>^ packedfftarray
)

Parameters

packedfftarray
Type: array< System..::.Double ,2>[,](,)[,]
Packed result of a FFT of an array of real signals.

Return Value

Reader to facilitate unpacking packed FFT signals.

Remarks

Replaces deprecated GetSignalReader(double[,] packedfftarray).

See Also