IMSL C# Numerical Library

Sort.Descending Method

Sort an array into descending order.

Overload List

Sort an array into descending order.

public static void Descending(double[]);

Sort an array into descending order and returns the permutation vector.

public static void Descending(double[],int[]);

Function to sort a matrix into descending order by the first nKeys.

public static void Descending(double[,],int);

Function to sort an array into descending order by the first nKeys and returns the permutation vector.

public static void Descending(double[,],int,int[]);

Function to sort a matrix into descending order by specified keys.

public static void Descending(double[,],int[]);

Function to sort a matrix into descending order by specified keys and return the permutation vector.

public static void Descending(double[,],int[],int[]);

Function to sort an integer array into descending order.

public static void Descending(int[]);

Sort an integer array into descending order and returns the permutation vector.

public static void Descending(int[],int[]);

See Also

Sort Class | Imsl.Stat Namespace