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_intvec_rank_rearrange (m01eb)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_sort_intvec_rank_rearrange (m01eb) rearranges a vector of integer numbers into the order specified by a vector of ranks.

Syntax

[iv, irank, ifail] = m01eb(iv, m1, irank, 'm2', m2)
[iv, irank, ifail] = nag_sort_intvec_rank_rearrange(iv, m1, irank, 'm2', m2)

Description

nag_sort_intvec_rank_rearrange (m01eb) is designed to be used typically in conjunction with the M01D ranking functions. After one of the M01D functions has been called to determine a vector of ranks, nag_sort_intvec_rank_rearrange (m01eb) can be called to rearrange a vector of integer numbers into the rank order. If the vector of ranks has been generated in some other way, then nag_sort_permute_check (m01zb) should be called to check its validity before nag_sort_intvec_rank_rearrange (m01eb) is called.

References

None.

Parameters

Compulsory Input Parameters

1:     ivm2 int64int32nag_int array
Elements m1 to m2 of iv must contain integer values to be rearranged.
2:     m1 int64int32nag_int scalar
m1 and m2 specify the range of the ranks supplied in irank and the elements of iv to be rearranged.
Constraint: 0<m1m2.
3:     irankm2 int64int32nag_int array
Elements m1 to m2 of irank must contain a permutation of the integers m1 to m2, which are interpreted as a vector of ranks.

Optional Input Parameters

1:     m2 int64int32nag_int scalar
Default: the dimension of the arrays irank, iv. (An error is raised if these dimensions are not equal.)
m1 and m2 specify the range of the ranks supplied in irank and the elements of iv to be rearranged.
Constraint: 0<m1m2.

Output Parameters

1:     ivm2 int64int32nag_int array
These values are rearranged into rank order. For example, if iranki=m1, then the initial value of ivi is moved to ivm1.
2:     irankm2 int64int32nag_int array
Used as internal workspace prior to being restored and hence is unchanged.
3:     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 irank contain a value outside the range m1 to m2.
   ifail=3
Elements m1 to m2 of irank 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 irank do not contain a permutation of the integers m1 to m2. On exit, the contents of iv may be corrupted. To check the validity of irank without the risk of corrupting iv, use nag_sort_permute_check (m01zb).

Accuracy

Not applicable.

Further Comments

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

Example

This example reads a matrix of integers and rearranges its rows so that the elements of the kth column are in ascending order. To do this, the program first calls nag_sort_intvec_rank (m01db) to rank the elements of the kth column, and then calls nag_sort_intvec_rank_rearrange (m01eb) to rearrange each column into the order specified by the ranks. The value of k is read from the datafile.
function m01eb_example


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

k  = int64(1);

im = [int64(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);
m2 = int64(size(im,1));
n  = int64(size(im,2));

% Rank by column k
order = 'Ascending';
[irank, ifail] = m01db(im(:,k), m1, order);

% Sort columns by ranking
for j = 1:n
  [im(:,j), irank, ifail] = m01eb(im(:,j), m1, irank);
end

fprintf('Matrix sorted on column %2d\n', k);
for i = m1:m2
  fprintf('%5d',im(i,:));
  fprintf('\n');
end


m01eb example results

Matrix sorted on column  1
    1    6    4
    2    4    9
    2    4    6
    3    4    1
    4    9    6
    4    9    5
    4    1    2
    4    9    6
    5    2    1
    6    5    4
    6    2    5
    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