Sets matrix element value.
Syntax
'Declaration
Public Sub SetElem( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Double _
)
'Usage
Dim instance As IGDoubleMatrix
Dim row As Integer
Dim column As Integer
Dim value As Double
instance.SetElem(row, column, value)
public void SetElem(
int ,
int column,
double
)
public: void SetElem(
int ,
int column,
double
)
public:
void SetElem(
int ,
int column,
double
)
Parameters
- row
- Row coordinate of the matrix element to set.
- column
- Column coordinate of the matrix element to set.
- value
- Double value.
See Also