  | FloatSymCsrSparseMatrixItem 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 float this[
	int row,
	int col
] { get; set; }Public Overrides Default Property Item ( 
	row As Integer,
	col As Integer
) As Single
	Get
	Set
public:
virtual property float default[int row, int col] {
	float get (int row, int col) override;
	void set (int row, int col, float value) override;
}abstract Item : float32 with get, set
override Item : float32 with get, set
Parameters
- row  Int32
 - The row.
 - col  Int32
 - The column.
 
Return Value
SingleThe value at the specified row and column.
See Also