Home > Extreme Optimization Mathematics Library for .NET > Reference > Extreme.Mathematics.LinearAlgebra Namespace > Matrix Class > Methods


Extreme Optimization Mathematics Library for .NET

Matrix.GetValue Method 

Gets the matrix component at the specified position.

[Visual Basic]
MustOverride Public Function GetValue( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As Double
[C#]
public abstract double GetValue(
   int row,
   int column
);

Parameters

row
The zero-based row index of the element to get or set.
column
The zero-based column index of the element to get or set.

Return Value

The component of the Matrix in the columnth column of the rowth row.

Remarks

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.

See Also

Matrix Class | Extreme.Mathematics.LinearAlgebra Namespace