IMSL C# Numerical Library

Sort.Ascending Method

Sort an array into ascending order.

Overload List

Sort an array into ascending order.

public static void Ascending(double[]);

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

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

Sort a matrix into ascending order by the first nKeys.

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

Sort an array into ascending order by the first nKeys and returns the permutation vector.

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

Sort a matrix into ascending order by specified keys.

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

Sort a matrix into ascending order by specified keys and returns the permutation vector.

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

Function to sort an integer array into ascending order.

public static void Ascending(int[]);

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

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

See Also

Sort Class | Imsl.Stat Namespace