Inserts a value at the specified position in the sparse matrix.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public abstract void InsertEntry(
T value,
int row,
int column
)
Public MustOverride Sub InsertEntry (
value As T,
row As Integer,
column As Integer
)
public:
virtual void InsertEntry(
T value,
int row,
int column
) abstract
abstract InsertEntry :
value : 'T *
row : int *
column : int -> unit
Parameters
- value
- Type: T
The value to insert. - row
- Type: SystemInt32
The zero-based row where value is to be inserted. - column
- Type: SystemInt32
The zero-based column where value is to be inserted.
If the current component at the specified row and column are nonzero,
it is replaced by the new value.
Numerical Libraries
Supported in: 6.0
Reference