SparseMatrix<T>.InsertColumn Method

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

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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