IResizableMatrix<T>.AppendColumn Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

AppendColumn() Appends an empty column at the end of a matrix.
AppendColumn(Vector<T>) Appends a column at the end of a matrix.

AppendColumn

Appends an empty column at the end of a matrix.
C#
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.
C#
void AppendColumn(
	Vector<T> data
)

Parameters

data  Vector<T>
A Vector<T> containing the data for the column.

Remarks

The number of columns of the matrix is increased by one.

Exceptions

ArgumentNullExceptiondata is null.
DimensionMismatchException The legth of data does not equal the number of rows of the matrix.

See Also