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_correg_linregm_service_reorder (g02cf)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_correg_linregm_service_reorder (g02cf) reorders the elements in two vectors (typically vectors of means and standard deviations), and the rows and columns in two matrices (typically either matrices of sums of squares and cross-products of deviations from means and Pearson product-moment correlation coefficients, or matrices of sums of squares and cross-products about zero and correlation-like coefficients).

Syntax

[xbar, std, ssp, r, ifail] = g02cf(korder, xbar, std, ssp, r, 'n', n)
[xbar, std, ssp, r, ifail] = nag_correg_linregm_service_reorder(korder, xbar, std, ssp, r, 'n', n)

Description

Input to the function consists of:
(a) A list of the order in which the n variables are to be arranged on exit:
i1,i2,i3,,in.  
(b) A vector of means:
x-1,x-2,x-3,,x-n .  
(c) A vector of standard deviations:
s1,s2,s3,,sn.  
(d) A matrix of sums of squares and cross-products of deviations from means:
S11 S12 S13 . . . S1n S21 S22 . S31 . . . . . . . Sn1 Sn2 . . . . Snn .  
(e) A matrix of correlation coefficients:
R11 R12 R13 . . . R1n R21 R22 . R31 . . . . . . . Rn1 Rn2 . . . . Rnn .  
On exit from the function, these same vectors and matrices are reordered, in the manner specified, and contain the following information:
(i) The vector of means:
x-i1,x-i2,x-i3,,x-in .  
(ii) The vector of standard deviations:
si1,si2,si3,sin.  
(iii) The matrix of sums of squares and cross-products of deviations from means:
Si1i1 Si1i2 Si1i3 . . . Si1in Si2i1 Si2i2 . Si3i1 . . . . . . . Sini1 Sini2 . . . . Sinin .  
(iv) The matrix of correlation coefficients:
Ri1i1 Ri1i2 Ri1i3 . . . Ri1in Ri2i1 Ri2i2 . Ri3i1 . . . . . . . Rini1 Rini2 . . . . Rinin .  
Note:  for sums of squares of cross-products of deviations about zero and correlation-like coefficients Sij and Rij should be replaced by S~ij and R~ij in the description of the input and output above.

References

None.

Parameters

Compulsory Input Parameters

1:     kordern int64int32nag_int array
korderi must be set to the number of the original variable which is to be the ith variable in the re-arranged data, for i=1,2,,n.
Constraint: 1korderin, for i=1,2,,n.
2:     xbarn – double array
xbari must be set to the mean of variable i, for i=1,2,,n.
3:     stdn – double array
stdi must be set to the standard deviation of variable i, for i=1,2,,n.
4:     sspldsspn – double array
ldssp, the first dimension of the array, must satisfy the constraint ldsspn.
sspij must be set to the sum of cross-products of deviations from means Sij (or about zero S~ij) for variables i and j, for i=1,2,,n and j=1,2,,n.
5:     rldrn – double array
ldr, the first dimension of the array, must satisfy the constraint ldrn.
rij must be set to the Pearson product-moment correlation coefficient Rij (or the correlation-like coefficient R~ij) for variables i and j, for i=1,2,,n and j=1,2,,n.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the dimension of the arrays korder, xbar, std and the first dimension of the arrays ssp, r and the second dimension of the arrays ssp, r. (An error is raised if these dimensions are not equal.)
n, the number of variables in the input data.
Constraint: n2.

Output Parameters

1:     xbarn – double array
xbari contains the mean of variable k where k=korderi, for i=1,2,,n.
2:     stdn – double array
stdi contains the standard deviation of variable k where k=korderi, for i=1,2,,n.
3:     sspldsspn – double array
sspij contains the sum of cross-products of deviations from means Skl (or about zero S~kl) for variables k and l, where k=korderi, and l=korderj, i,j=1,2,,n.
4:     rldrn – double array
rij contains the Pearson product-moment correlation coefficient Rkl (or the correlation-like coefficient R~kl) for variables k and l, where k=korderi and l=korderj, for i=1,2,,n and j=1,2,,n.
5:     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,n<2.
   ifail=2
On entry,ldssp<n,
orldr<n.
   ifail=3
On entry,korderi<1,
orkorderi>n for some i=1,2,,n.
   ifail=4
On entry, there is not a one-to-one correspondence between the old variables and the new variables; at least one of the original variables is not included in the new set, and consequently at least one other variable has been included more than once.
   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.

Accuracy

Not applicable.

Further Comments

The time taken by nag_correg_linregm_service_reorder (g02cf) depends on n and the amount of re-arrangement involved.
The function is intended primarily for use when a set of variables is to be reordered for use in a regression, and is described accordingly. There is however no reason why the function should not also be used to reorder vectors and matrices which contain any other non-statistical information; the matrices need not be symmetric.
The function may be used either with sums of squares and cross-products of deviations from means and Pearson product-moment correlation coefficients in connection with a regression involving a constant, or with sums of squares and cross-products about zero and correlation-like coefficients in connection with a regression with no constant.

Example

This example reads in the means, standard deviations, sums of squares and cross-products, and correlation coefficients for three variables. The vectors and matrices are reordered so that they contain the means, standard deviations, sums of squares and cross-products, and correlation coefficients for the first, third and second variables (in that order). Finally the reordered vectors and matrices are printed.
function g02cf_example


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

% Data
xbar = [  5.4;     5.8;      2.8];
std  = [  4.98;    5.0695;   1.924 ];
ssp  = [ 99.2,   -57.6,      6.4;
        -57.6,   102.8,    -29.2;
          6.4,   -29.2,     14.8   ];
r    = [  1,     -0.5704,    0.167;
         -0.5704, 1,        -0.7486;
          0.167, -0.7486,    1     ];

% Reordering
korder = [int64(1); 3; 2];

% Display data
fprintf('Original vector xbar :   ');
fprintf(' %10.4f', xbar);
fprintf('\n\nOriginal vector std  :   ');
fprintf(' %10.4f', std);
fprintf('\n\n');
disp('Original matrix SSP  :');
disp(ssp);
disp('Original matrix R    :');
disp(r);

% Calculate new summaries
[xbar, std, ssp, r, ifail] = g02cf( ...
                                    korder, xbar, std, ssp, r);

% Display results
fprintf('New vector xbar :   ');
fprintf(' %10.4f', xbar);
fprintf('\n\nNew vector std  :   ');
fprintf(' %10.4f', std);
fprintf('\n\n');
disp('New matrix ssp  :');
disp(ssp);
disp('New matrix r    :');
disp(r);


g02cf example results

Original vector xbar :        5.4000     5.8000     2.8000

Original vector std  :        4.9800     5.0695     1.9240

Original matrix SSP  :
   99.2000  -57.6000    6.4000
  -57.6000  102.8000  -29.2000
    6.4000  -29.2000   14.8000

Original matrix R    :
    1.0000   -0.5704    0.1670
   -0.5704    1.0000   -0.7486
    0.1670   -0.7486    1.0000

New vector xbar :        5.4000     2.8000     5.8000

New vector std  :        4.9800     1.9240     5.0695

New matrix ssp  :
   99.2000    6.4000  -57.6000
    6.4000   14.8000  -29.2000
  -57.6000  -29.2000  102.8000

New matrix r    :
    1.0000    0.1670   -0.5704
    0.1670    1.0000   -0.7486
   -0.5704   -0.7486    1.0000


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