IResizable
            
            
            
            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 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. |