ComplexSparseMatrixGet Method |
Returns the value of an element in the matrix.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Complex Get(
int iRow,
int jColumn
)
Public Function Get (
iRow As Integer,
jColumn As Integer
) As Complex
public:
Complex Get(
int iRow,
int jColumn
)
member Get :
iRow : int *
jColumn : int -> Complex
Parameters
- iRow
- Type: SystemInt32
An int containing the row index of the element.
- jColumn
- Type: SystemInt32
An int containing the column index of the element.
Return Value
Type:
Complex
A
Complex containing the value of the
iRow-th and
jColumn-th element. If the element was never set,
its value is zero.
See Also