Sets the value of an element in the matrix.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public void Set(
int iRow,
int jColumn,
double x
)
Public Sub Set (
iRow As Integer,
jColumn As Integer,
x As Double
)
public:
void Set(
int iRow,
int jColumn,
double x
)
member Set :
iRow : int *
jColumn : int *
x : float -> unit
Parameters
- iRow
- Type: SystemInt32
An int specifying the row index of the element.
- jColumn
- Type: SystemInt32
An int specifying the column index of the element.
- x
- Type: SystemDouble
A double specifying the value of the iRow-th and
jColumn-th element.
See Also