Inserts a set of values at the specified positions in the sparse matrix.
Namespace: Extreme.Mathematics.Generic.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
public virtual void InsertEntries(
T[] values,
int[] rows,
int[] columns
)
Public Overridable Sub InsertEntries (
values As T(),
rows As Integer(),
columns As Integer()
)
public:
virtual void InsertEntries(
array<T>^ values,
array<int>^ rows,
array<int>^ columns
)
abstract InsertEntries :
values : 'T[] *
rows : int[] *
columns : int[] -> unit
override InsertEntries :
values : 'T[] *
rows : int[] *
columns : int[] -> unit
Parameters
- values
- Type: T
Array of values to insert. - rows
- Type: SystemInt32
Array of zero-based row indexes where the elements of values
are to be inserted. - columns
- Type: SystemInt32
Array zero-based column indexes where the elements of values
are to be inserted.
Existing nonzero components are overwritten. If the same row and column appear
multiple times, then only the last value is entered.
Numerical Libraries
Supported in: 5.x
Reference