Sets the value of an element in the matrix.

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

Syntax

C#
public void Set(
	int iRow,
	int jColumn,
	Complex x
)
Visual Basic (Declaration)
Public Sub Set ( _
	iRow As Integer, _
	jColumn As Integer, _
	x As Complex _
)
Visual C++
public:
void Set(
	int iRow, 
	int jColumn, 
	Complex x
)

Parameters

iRow
Type: System..::.Int32
An int containing the row index of the element.
jColumn
Type: System..::.Int32
An int containing the column index of the element.
x
Type: Imsl.Math..::.Complex
A Complex containing the value of the iRow-th and jColumn-th element.

See Also