IResizable Matrix<T>.Append Column Method
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Append | Appends an empty column at the end of a matrix. |
Append | Appends a column at the end of a matrix. |
AppendColumn
Appends an empty column at the end of a matrix.
void AppendColumn()
Remarks
The number of columns of the matrix is increased by one.
AppendColumn(Vector<T>)
Appends a column at the end of a matrix.
void AppendColumn(
Vector<T> data
)
Parameters
Remarks
The number of columns of the matrix is increased by one.
Exceptions
Argument | data is null. |
Dimension | The legth of data does not equal the number of rows of the matrix. |