Click or drag to resize

MatrixTRemoveRow Method

Creates a new matrix with the given row removed.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Matrix<T> RemoveRow(
	int rowIndex
)

Parameters

rowIndex  Int32
The index of the row to remove.

Return Value

MatrixT
A new matrix without the chosen row.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionIf rowIndex is < zero or >= the number of rows.
See Also