hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_sort_permute_invert (m01za)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_sort_permute_invert (m01za) inverts a permutation, and hence converts a rank vector to an index vector, or vice versa.

Syntax

[iperm, ifail] = m01za(iperm, m1, 'm2', m2)
[iperm, ifail] = nag_sort_permute_invert(iperm, m1, 'm2', m2)

Description

There are two common ways of describing a permutation using an integer vector iperm. The first uses ranks: ipermi holds the position to which the ith data element should be moved in order to sort the data; in other words its rank in the sorted order. The second uses indices: ipermi holds the current position of the data element which would occur in ith position in sorted order. For example, given the values
3.55.92.90.5  
to be sorted in ascending order, the ranks would be
3.0 4.0 2.0 1.0  
and the indices would be
4.0 3.0 1.0 2.0  
The M01D functions generate ranks, and the M01E functions require ranks to be supplied to specify the reordering. However if it is desired simply to refer to the data in sorted order without actually reordering them, indices are more convenient than ranks (see the example in Example).
nag_sort_permute_invert (m01za) can be used to convert ranks to indices, or indices to ranks, as the two permutations are inverses of each another.

References

None.

Parameters

Compulsory Input Parameters

1:     ipermm2 int64int32nag_int array
Elements m1 to m2 of iperm must contain a permutation of the integers m1 to m2.
2:     m1 int64int32nag_int scalar
m1 and m2 must specify the range of elements used in the array iperm and the range of values in the permutation, as specified under iperm.
Constraint: 0<m1m2.

Optional Input Parameters

1:     m2 int64int32nag_int scalar
Default: the dimension of the array iperm.
m1 and m2 must specify the range of elements used in the array iperm and the range of values in the permutation, as specified under iperm.
Constraint: 0<m1m2.

Output Parameters

1:     ipermm2 int64int32nag_int array
These elements contain the inverse permutation of the integers m1 to m2.
2:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   ifail=1
On entry,m2<1,
orm1<1,
orm1>m2.
   ifail=2
Elements m1 to m2 of iperm contain a value outside the range m1 to m2.
   ifail=3
Elements m1 to m2 of iperm contain a repeated value.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.
If ifail=2 or 3, elements m1 to m2 of iperm do not contain a permutation of the integers m1 to m2; on exit these elements are usually corrupted. To check the validity of a permutation without the risk of corrupting it, use nag_sort_permute_check (m01zb).

Accuracy

Not applicable.

Further Comments

None.

Example

This example reads a matrix of real numbers and prints its rows in ascending order as ranked by nag_sort_realmat_rank_rows (m01de). The program first calls nag_sort_realmat_rank_rows (m01de) to rank the rows, and then calls nag_sort_permute_invert (m01za) to convert the rank vector to an index vector, which is used to refer to the rows in sorted order.
function m01za_example


fprintf('m01za example results\n\n');

rm = [6, 5, 4;
      5, 2, 1;
      2, 4, 9;
      4, 9, 6;
      4, 9, 5;
      4, 1, 2;
      3, 4, 1;
      2, 4, 6;
      1, 6, 4;
      9, 3, 2;
      6, 2, 5;
      4, 9, 6];

m1 = int64(1);
n1 = int64(1);
order = 'Ascending';

[irank, ifail] = m01de( ...
                        rm, m1, n1, order);

[irank, ifail] = m01za(irank, m1);

fprintf('Matrix sorted by rows\n\n');
disp(rm(irank,:));


m01za example results

Matrix sorted by rows

     1     6     4
     2     4     6
     2     4     9
     3     4     1
     4     1     2
     4     9     5
     4     9     6
     4     9     6
     5     2     1
     6     2     5
     6     5     4
     9     3     2


PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015