IResizableMatrix<T>.AppendColumns Method

Appends zero or more columns at the end of a matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
void AppendColumns(
	Matrix<T> data
)

Parameters

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

Remarks

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

Exceptions

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

See Also