ComplexSparseMatrixPlusEquals Method |
Adds a value to an element in the matrix.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Complex PlusEquals(
int iRow,
int jColumn,
Complex x
)
Public Function PlusEquals (
iRow As Integer,
jColumn As Integer,
x As Complex
) As Complex
public:
Complex PlusEquals(
int iRow,
int jColumn,
Complex x
)
member PlusEquals :
iRow : int *
jColumn : int *
x : Complex -> 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.
- x
- Type: Imsl.MathComplex
A Complex containing the value to be added to the
iRow-th and jColumn-th element.
Return Value
Type:
Complex
A
Complex containing the updated value of the
iRow-th
and
jColumn-th element, which equals its old value
plus
x.
See Also