Deletes a series of columns from a matrix.
Namespace: Extreme.Mathematics.Generic.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
void DeleteColumns(
int column,
int count
)
Sub DeleteColumns (
column As Integer,
count As Integer
)
void DeleteColumns(
int column,
int count
)
abstract DeleteColumns :
column : int *
count : int -> unit
Parameters
- column
- Type: SystemInt32
The zero-based index of the first column to delete. - count
- Type: SystemInt32
The number of columns to delete.
Exception | Condition |
---|
ArgumentOutOfRangeException | column is less than zero or greater
than or equal to the number of columns.
-or- count is less than zero or greater than the number of columns
from column to the end. |
The number of columns of the matrix is decreased by one.
Numerical Libraries
Supported in: 5.x
Reference