Gets the matrix component at the specified position.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public abstract double GetValue(
int row,
int column
)
Public MustOverride Function GetValue (
row As Integer,
column As Integer
) As Double
public:
virtual double GetValue(
int row,
int column
) abstract
abstract GetValue :
row : int *
column : int -> float
Parameters
- row
- Type: SystemInt32
The zero-based row index of
the element to get or set. - column
- Type: SystemInt32
The zero-based column index of
the element to get or set.
Return Value
Type:
DoubleThe component of the
Matrix in the
columnth column of the
rowth row.
This method does not perform bounds checking. It is provided
for optimized access in situations where the arguments are known to be
within bounds. If either argument is outside its valid range, the result
is unspecified.
Numerical Libraries
Supported in: 5.x, 4.x
Reference