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