Click or drag to resize

MatrixTRemoveColumn Method

Creates a new matrix with the given column removed.

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

Parameters

columnIndex  Int32
The index of the column to remove.

Return Value

MatrixT
A new matrix without the chosen column.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionIf columnIndex is < zero or >= the number of columns.
See Also