IResizable Matrix<T>.Append Row 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 row at the end of a matrix. |
Append | Appends a row at the end of a matrix. |
AppendRow
Appends an empty row at the end of a matrix.
void AppendRow()
Remarks
The number of rows of the matrix is increased by one.
AppendRow(Vector<T>)
Appends a row at the end of a matrix.
void AppendRow(
Vector<T> data
)
Parameters
Remarks
The number of rows of the matrix is increased by one.
Exceptions
Argument | data is null. |
Dimension | The legth of data does not equal the number of columns of the matrix. |