|  | FloatForward2DFFTGetSignalReader(FloatMatrix) Method | 
            Generates the appropriate reader to unpack the packed complex conjugate symmetric FFT's 
            computed by this class. 
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic FloatSymmetric2DSignalReader GetSignalReader(
	ref FloatMatrix packedmatrix
)
Public Function GetSignalReader ( 
	ByRef packedmatrix As FloatMatrix
) As FloatSymmetric2DSignalReader
public:
FloatSymmetric2DSignalReader^ GetSignalReader(
	FloatMatrix^% packedmatrix
)
member GetSignalReader : 
        packedmatrix : FloatMatrix byref -> FloatSymmetric2DSignalReader Parameters
- packedmatrix  FloatMatrix
- Packed result of a 2D FFT of a real signal.
Return Value
FloatSymmetric2DSignalReaderReader to facilitate unpacking packed 2D FFT signals.
 Exceptions
Exceptions| Exception | Condition | 
|---|
| InvalidArgumentException | Thrown if the dimensions of the input complex conjugate symmetric matrix, packedmatrix, are smaller than the dimensions of this 
            FloatForward2DFFT instance. | 
 See Also
See Also