Matrix<T>.SortRows Method

Definition

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

Overload List

SortRows() Sorts each row of the matrix in ascending order.
SortRows(SortOrder) Sorts each row of the matrix in the specified order.

SortRows

Sorts each row of the matrix in ascending order.
C#
public void SortRows()

SortRows(SortOrder)

Sorts each row of the matrix in the specified order.
C#
public void SortRows(
	SortOrder sortOrder
)

Parameters

sortOrder  SortOrder
A SortOrder value that specifies whether the elements should be sorted in ascending or descending order.

See Also