 | ISparseMatrixStorageTItem Property |
The value at the given row and column of the matrix.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
SyntaxT this[
int row,
int col
] { get; set; }
Default Property Item (
row As Integer,
col As Integer
) As T
Get
Set
property T default[int row, int col] {
T get (int row, int col);
void set (int row, int col, T value);
}
abstract Item : 'T with get, set
Parameters
- row Int32
- The row.
- col Int32
- The column.
Return Value
TThe value at the given row and column.
See Also