Gets the matrix component at the specified position.
Namespace: Extreme.Mathematics.Generic.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
protected abstract T SparseGetValue(
int row,
int column
)
Protected MustOverride Function SparseGetValue (
row As Integer,
column As Integer
) As T
protected:
virtual T SparseGetValue(
int row,
int column
) abstract
abstract SparseGetValue :
row : int *
column : int -> 'T
Parameters
- row
- Type: SystemInt32
The zero-based row index of
the element to get. - column
- Type: SystemInt32
The zero-based column index of
the element to get.
Return Value
Type:
TThe component of the
SparseMatrixT in the position specified by
row and
column.
This method does not perform bounds checking. It is provided
for optimized access in situations where the argument is known to be
within bounds. If the argument is outside its valid range, the result
may be unpredictable.
Numerical Libraries
Supported in: 5.x
Reference