|  | FloatHermCsrSparseMatrixItem Property | 
            Indexer for returning the element at the specified row and column.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic override FloatComplex this[
	int row,
	int col
] { get; set; }Public Overrides Default Property Item ( 
	row As Integer,
	col As Integer
) As FloatComplex
	Get
	Set
public:
virtual property FloatComplex default[int row, int col] {
	FloatComplex get (int row, int col) override;
	void set (int row, int col, FloatComplex value) override;
}abstract Item : FloatComplex with get, set
override Item : FloatComplex with get, set
Parameters
- row  Int32
- The row.
- col  Int32
- The column.
Return Value
FloatComplexThe value at the specified row and column.
 See Also
See Also