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

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

Syntax

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

Parameters

ra
Type: array< System..::.Double ,2>[,](,)[,]
a double matrix to be sorted into descending order.
nKeys
Type: System..::.Int32
int containing the first nKeys columns of ra to be used as the sorting keys.

See Also