IResizableMatrix<T>.AppendRow Method

Definition

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

Overload List

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

AppendRow

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

Parameters

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

Remarks

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

Exceptions

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

See Also