|  | FloatSymmetric2DSignalReaderItem Property | 
            Gets the value at [row, column] of the packed complex-conjugate symmetric signal.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic virtual FloatComplex this[
	int row,
	int col
] { get; }Public Overridable ReadOnly Default Property Item ( 
	row As Integer,
	col As Integer
) As FloatComplex
	Get
public:
virtual property FloatComplex default[int row, int col] {
	FloatComplex get (int row, int col);
}abstract Item : FloatComplex with get
override Item : FloatComplex with get
Parameters
- row  Int32
- row in the signal array.
- col  Int32
- column in the signal array.
Return Value
FloatComplexSignal value at 
[row, col].
 Exceptions
Exceptions| Exception | Condition | 
|---|
| IndexOutOfRangeException | Thrown if row or col is less than zero or greater than the dimensions of the 2D signal data. | 
 See Also
See Also