Gets the matrix component at the specified position.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public MustOverride Function GetValue ( _
	row As Integer, _
	column As Integer _
) As Double
C#
public abstract double GetValue (
	int row,
	int column
)
C++
public:
virtual double GetValue (
	int row, 
	int column
) abstract

Parameters

row (System.Int32)
The zero-based row index of the element to get or set.
column (System.Int32)
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.