ComplexSparseMatrixSet Method |
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,
Complex x
)
Public Sub Set (
iRow As Integer,
jColumn As Integer,
x As Complex
)
public:
void Set(
int iRow,
int jColumn,
Complex x
)
member Set :
iRow : int *
jColumn : int *
x : Complex -> unit
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.
- x
- Type: Imsl.MathComplex
A Complex containing the value of the iRow-th
and jColumn-th element.
See Also