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