Returns the value of an element in the matrix.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double Get(
	int iRow,
	int jColumn
)
Visual Basic (Declaration)
Public Function Get ( _
	iRow As Integer, _
	jColumn As Integer _
) As Double
Visual C++
public:
double Get(
	int iRow, 
	int jColumn
)

Parameters

iRow
Type: System..::.Int32
An int specifying the row index of the element.
jColumn
Type: System..::.Int32
An int specifying the column index of the element.

Return Value

A double containing the value of the iRow-th and jColumn-th element. If the element was never set, its value is zero.

See Also