Inserts a set of values at the specified column 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 InsertColumn ( _
	column As Integer, _
	values As Double(), _
	rows As Integer() _
)
C#
public virtual void InsertColumn (
	int column,
	double[] values,
	int[] rows
)
Visual C++
public:
virtual void InsertColumn (
	int column, 
	array<double>^ values, 
	array<int>^ rows
)

Parameters

column
System.Int32
The zero-based column index where the elements of values are to be inserted.
values
System.Double[]
Array of values to insert.
rows
System.Int32[]
Array of zero-based row indexes where the elements of values are to be inserted.

Exceptions

ExceptionCondition
System.ArgumentNullException

values is nullNothingnullptr

-or-

rows is nullNothingnullptr