Vector.Sort<T>(Vector<T>, SortOrder, Permutation) Method

Sorts a vector in the specified order and also returns the sorting permutation.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<T> Sort<T>(
	this Vector<T> vector,
	SortOrder sortOrder,
	out Permutation permutation
)

Parameters

vector  Vector<T>
The vector to sort.
sortOrder  SortOrder
A SortOrder value that specifies whether the elements should be sorted in ascending or descending order.
permutation  Permutation
On return, the Permutation that transforms vector into the sorted result.

Type Parameters

T

Return Value

Vector<T>

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also