Inserts a value at the specified position in the SparseMatrix.
Namespace: Extreme.Mathematics.LinearAlgebra.Sparse
Assembly: Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0
Syntax
| Visual Basic (Declaration) |
|---|
Public MustOverride Sub InsertEntry ( _ value As Double, _ row As Integer, _ column As Integer _ ) |
| C# |
|---|
public abstract void InsertEntry ( double value, int row, int column ) |
| Visual C++ |
|---|
public: virtual void InsertEntry ( double value, int row, int column ) abstract |
Parameters
- value
- System.Double
The value to insert.
- row
- System.Int32
The zero-based row where value is to be inserted.
- column
- System.Int32
The zero-based column where value is to be inserted.
Remarks
If the current component at the specified row and column are nonzero,
it is replaced by the new value.