Sparse Matrix<T>.Insert Entries Method
Inserts a set of values at the specified positions in the sparse matrix.
Definition
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public virtual void InsertEntries(
T[] values,
int[] rows,
int[] columns
)
Parameters
Remarks
Existing nonzero components are overwritten. If the same row and column appear multiple times, then only the last value is entered.
Exceptions
Argument | values is null -or- rows is null -or- columns is null |
Dimension | The length of rows is not equal to the length of values. -or- The length of columns is not equal to the length of values. |