SparseMatrix<T>.InsertColumn Method

Inserts a set of values at the specified column in the sparse matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual void InsertColumn(
	int column,
	T[] values,
	int[] rows
)

Parameters

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

Exceptions

ArgumentNullException

values is null

-or-

rows is null

See Also