IResizable Matrix<T>.Append Row Method
Definition
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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. |