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 DoubleSymmetric2DSignalReader GetSignalReader(
	ref DoubleMatrix packedmatrix
)
Visual Basic (Declaration)
Public Function GetSignalReader ( _
	ByRef packedmatrix As DoubleMatrix _
) As DoubleSymmetric2DSignalReader
Visual C++
public:
DoubleSymmetric2DSignalReader^ GetSignalReader(
	DoubleMatrix^% packedmatrix
)

Parameters

packedmatrix
Type: CenterSpace.NMath.Core..::.DoubleMatrix %
Packed result of a 2D FFT of a real signal.

Return Value

Reader to facilitate unpacking packed 2D FFT signals.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if the dimensions of the input complex conjugate symmetric matrix, packedmatrix, are smaller than the dimensions of this DoubleForward2DFFT instance.

See Also