SparseMatrix<T>.InsertEntry Method

Inserts a value at the specified position in the sparse matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public abstract void InsertEntry(
	T value,
	int row,
	int column
)

Parameters

value  T
The value to insert.
row  Int32
The zero-based row where value is to be inserted.
column  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.

See Also