IResizable Matrix<T>.Insert Column Method
Inserts a column into a matrix that the specified index.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
void InsertColumn(
int index,
Vector<T> data
)
Parameters
Remarks
index becomes the index of the new column in the matrix. To insert a column after the last column, use a value of ColumnCount, or use the AppendColumn(Vector<T>) method.
The number of columns is increased by one.
Exceptions
Argument | data is null. |
Argument | index is less than zero or greater than the number of columns. |
Dimension | The length of data does not equal the number of rows of the matrix. |