IResizableMatrix<T>.AppendRows Method

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

DefinitionPermalink

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
void AppendRows(
	Matrix<T> data
)

ParametersPermalink

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

RemarksPermalink

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

ExceptionsPermalink

ArgumentNullException

data is null.

DimensionMismatchException

The number of columns of data does not equal the number of columns of the matrix.

See AlsoPermalink