Inserts a set of values at the specified row in the SparseMatrix.
Namespace: Extreme.Mathematics.LinearAlgebra.Sparse
Assembly: Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0
Syntax
| Visual Basic (Declaration) |
|---|
Public Overridable Sub InsertRow ( _ row As Integer, _ values As Double(), _ columns As Integer() _ ) |
| C# |
|---|
public virtual void InsertRow ( int row, double[] values, int[] columns ) |
| Visual C++ |
|---|
public: virtual void InsertRow ( int row, array<double>^ values, array<int>^ columns ) |
Parameters
- row
- System.Int32
The zero-based row index where the elements of values are to be inserted.
- values
- System.Double[]
Array of values to insert.
- columns
- System.Int32[]
Array of zero-based column indexes where the elements of values are to be inserted.
Exceptions
| Exception | Condition |
|---|---|
| System.ArgumentNullException | values is nullNothingnullptr -or- columns is nullNothingnullptr |