Sort a matrix into ascending order by specified keys.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static void Ascending(
	double[,] ra,
	int[] indkeys
)
Visual Basic (Declaration)
Public Shared Sub Ascending ( _
	ra As Double(,), _
	indkeys As Integer() _
)
Visual C++
public:
static void Ascending(
	array<double,2>^ ra, 
	array<int>^ indkeys
)

Parameters

ra
Type: array< System..::.Double ,2>[,](,)[,]
a double matrix to be sorted into ascending order.
indkeys
Type: array< System..::.Int32 >[]()[]
int array containing the order the columns of ra are to be sorted.

See Also