M01ZAF (PDF version)
M01 Chapter Contents
M01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

M01ZAF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

M01ZAF inverts a permutation, and hence converts a rank vector to an index vector, or vice versa.

2  Specification

SUBROUTINE M01ZAF ( IPERM, M1, M2, IFAIL)
INTEGER  IPERM(M2), M1, M2, IFAIL

3  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 routines generate ranks, and the M01E routines 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 Section 9).
M01ZAF can be used to convert ranks to indices, or indices to ranks, as the two permutations are inverses of each another.

4  References

None.

5  Parameters

1:     IPERM(M2) – INTEGER arrayInput/Output
On entry: elements M1 to M2 of IPERM must contain a permutation of the integers M1 to M2.
On exit: these elements contain the inverse permutation of the integers M1 to M2.
2:     M1 – INTEGERInput
3:     M2 – INTEGERInput
On entry: 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.
4:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
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.
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 M01ZBF.

7  Accuracy

Not applicable.

8  Further Comments

None.

9  Example

This example reads a matrix of real numbers and prints its rows in ascending order as ranked by M01DEF. The program first calls M01DEF to rank the rows, and then calls M01ZAF to convert the rank vector to an index vector, which is used to refer to the rows in sorted order.

9.1  Program Text

Program Text (m01zafe.f90)

9.2  Program Data

Program Data (m01zafe.d)

9.3  Program Results

Program Results (m01zafe.r)


M01ZAF (PDF version)
M01 Chapter Contents
M01 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012