NAG Library Routine Document

m01eaf (realvec_rank_rearrange)

1
Purpose

m01eaf rearranges a vector of real numbers into the order specified by a vector of ranks.

2
Specification

Fortran Interface
Subroutine m01eaf ( rv, m1, m2, irank, ifail)
Integer, Intent (In):: m1, m2
Integer, Intent (Inout):: irank(m2), ifail
Real (Kind=nag_wp), Intent (Inout):: rv(m2)
C Header Interface
#include <nagmk26.h>
void  m01eaf_ (double rv[], const Integer *m1, const Integer *m2, Integer irank[], Integer *ifail)

3
Description

m01eaf is designed to be used typically in conjunction with the M01D ranking routines. After one of the M01D routines has been called to determine a vector of ranks, m01eaf can be called to rearrange a vector of real numbers into the rank order. If the vector of ranks has been generated in some other way, then m01zbf should be called to check its validity before m01eaf is called.

4
References

None.

5
Arguments

1:     rvm2 – Real (Kind=nag_wp) arrayInput/Output
On entry: elements m1 to m2 of rv must contain real values to be rearranged.
On exit: these values are rearranged into rank order. For example, if iranki=m1, then the initial value of rvi is moved to rvm1.
2:     m1 – IntegerInput
3:     m2 – IntegerInput
On entry: m1 and m2 must specify the range of the ranks supplied in irank and the elements of rv to be rearranged.
Constraint: 0<m1m2.
4:     irankm2 – Integer arrayInput/Output
On entry: elements m1 to m2 of irank must contain a permutation of the integers m1 to m2, which are interpreted as a vector of ranks.
On exit: used as internal workspace prior to being restored and hence is unchanged.
5:     ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1 or 1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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, m1=value.
Constraint: m11.
On entry, m1=value and m2=value.
Constraint: m1m2.
On entry, m2=value.
Constraint: m21.
ifail=2
irankm1:m2 does not contain a permutation of the integers m1 to m2. irankI contains an out-of-range value: I=value, irankI=value.
ifail=3
irankm1:m2 does not contain a permutation of the integers m1 to m2. irank contains a repeated value: value.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.
If ifail=2 or 3, elements m1 to m2 of irank do not contain a permutation of the integers m1 to m2. On exit, the contents of rv may be corrupted. To check the validity of irank without the risk of corrupting rv, use m01zbf.

7
Accuracy

Not applicable.

8
Parallelism and Performance

m01eaf is not threaded in any implementation.

9
Further Comments

The average time taken by the routine is approximately proportional to n, where n=m2-m1+1.

10
Example

This example reads a matrix of real numbers and rearranges its rows so that the elements of the kth column are in ascending order. To do this, the program first calls m01daf to rank the elements of the kth column, and then calls m01eaf to rearrange each column into the order specified by the ranks. The value of k is read from the datafile.

10.1
Program Text

Program Text (m01eafe.f90)

10.2
Program Data

Program Data (m01eafe.d)

10.3
Program Results

Program Results (m01eafe.r)