NAG FL Interface
g02cef (linregm_​service_​select)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g02cef takes selected elements from two vectors (typically vectors of means and standard deviations) to form two smaller vectors, and selected rows and columns from 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) to form two smaller matrices, allowing reordering of elements in the process.

2 Specification

Fortran Interface
Subroutine g02cef ( n, xbar, std, ssp, ldssp, r, ldr, m, korder, xbar2, std2, ssp2, ldssp2, r2, ldr2, ifail)
Integer, Intent (In) :: n, ldssp, ldr, m, korder(m), ldssp2, ldr2
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: xbar(n), std(n), ssp(ldssp,n), r(ldr,n)
Real (Kind=nag_wp), Intent (Inout) :: ssp2(ldssp2,m), r2(ldr2,m)
Real (Kind=nag_wp), Intent (Out) :: xbar2(m), std2(m)
C Header Interface
#include <nag.h>
void  g02cef_ (const Integer *n, const double xbar[], const double std[], const double ssp[], const Integer *ldssp, const double r[], const Integer *ldr, const Integer *m, const Integer korder[], double xbar2[], double std2[], double ssp2[], const Integer *ldssp2, double r2[], const Integer *ldr2, Integer *ifail)
The routine may be called by the names g02cef or nagf_correg_linregm_service_select.

3 Description

Input to the routine consists of:
  1. (a)A vector of means:
    (x¯1,x¯2,x¯3,,x¯n),  
    where n is the number of input variables.
  2. (b)A vector of standard deviations:
    (s1,s2,s3,,sn).  
  3. (c)A matrix of sums of squares and cross-products of deviations from means:
    ( S11 S12 S13 . . . S1n S21 S22 S2n S31 . . . . . . . Sn1 Sn2 . . . . Snn ) .  
  4. (d)A matrix of correlation coefficients:
    ( R11 R12 R13 . . . R1n R21 R22 R2n R31 . . . . . . . Rn1 Rn2 . . . . Rnn ) .  
  5. (e)The number of variables, m, in the required subset, and their row/column numbers in the input data, i1,i2,i3,,im,
    iikn  for k=1,2,,m(n2,m1  and  mn).  
New vectors and matrices are output containing the following information:
  1. (i)A vector of means:
    (x¯i1,x¯i2,x¯i3,,x¯im).  
  2. (ii)A vector of standard deviations:
    (si1,si2,si3,,sim).  
  3. (iii)A matrix of sums of squares and cross-products of deviations from means:
    ( Si1i1 Si1i2 Si1i3 . . . Si1im Si2i1 Si2i2 . Si3i1 . . . . . . . Simi1 Simi2 . . . . Simim ) .  
  4. (iv)A matrix of correlation coefficients:
    ( Ri1i1 Ri1i2 Ri1i3 . . . Ri1im Ri2i1 Ri2i2 . Ri3i1 . . . . . . . Rimi1 Rimi2 . . . . Rimim ) .  
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.

4 References

None.

5 Arguments

1: n Integer Input
On entry: n, the number of variables in the input data.
Constraint: n2.
2: xbar(n) Real (Kind=nag_wp) array Input
On entry: xbar(i) must be set to x¯i, the mean of variable i, for i=1,2,,n.
3: std(n) Real (Kind=nag_wp) array Input
On entry: std(i) must be set to si, the standard deviation of variable i, for i=1,2,,n.
4: ssp(ldssp,n) Real (Kind=nag_wp) array Input
On entry: ssp(i,j) 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: ldssp Integer Input
On entry: the first dimension of the array ssp as declared in the (sub)program from which g02cef is called.
Constraint: ldsspn.
6: r(ldr,n) Real (Kind=nag_wp) array Input
On entry: r(i,j) 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.
7: ldr Integer Input
On entry: the first dimension of the array r as declared in the (sub)program from which g02cef is called.
Constraint: ldrn.
8: m Integer Input
On entry: the number of variables m, required in the reduced vectors and matrices.
Constraint: 1mn.
9: korder(m) Integer array Input
On entry: korder(i) must be set to the number of the original variable which is to be the ith variable in the output vectors and matrices, for i=1,2,,m.
Constraint: 1korder(i)n, for i=1,2,,m.
10: xbar2(m) Real (Kind=nag_wp) array Output
On exit: the mean of variable i, xbar(i), where i=korder(k), for k=1,2,,m. (The array xbar2 must differ from xbar and std.)
11: std2(m) Real (Kind=nag_wp) array Output
On exit: the standard deviation of variable i, std(i), where i=korder(k), for k=1,2,,m. (The array std2 must differ from both xbar and std.)
12: ssp2(ldssp2,m) Real (Kind=nag_wp) array Output
On exit: ssp2(k,l) contains the value of ssp(i,j), where i=korder(k) and j=korder(l), for k=1,2,,m and l=1,2,,m. (The array ssp2 must differ from both ssp and r.)
That is to say: on exit, ssp2(k,l) contains the sum of cross-products of deviations from means Sij (or about zero, S~ij).
13: ldssp2 Integer Input
On entry: the first dimension of the array ssp2 as declared in the (sub)program from which g02cef is called.
Constraint: ldssp2m.
14: r2(ldr2,m) Real (Kind=nag_wp) array Output
On exit: r2(k,l) contains the value of r(i,j), where i=korder(k) and j=korder(l), for k=1,2,,m and l=1,2,,m. (The array r2 must differ from both ssp and r.)
That is to say: on exit, r2(k,l) contains the Pearson product-moment coefficient Rij (or the correlation-like coefficient, R~ij).
15: ldr2 Integer Input
On entry: the first dimension of the array r2 as declared in the (sub)program from which g02cef is called.
Constraint: ldr2m.
16: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. 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, m=value.
Constraint: m1.
On entry, n=value.
Constraint: n2.
ifail=2
On entry, n=value and m=value.
Constratint: nm.
ifail=3
On entry, ldr2=value and m=value.
Constraint: ldr2m.
On entry, ldr=value and n=value.
Constraint: ldrn.
On entry, ldssp2=value and m=value.
Constraint: ldssp2m.
On entry, ldssp=value and n=value.
Constraint: ldsspn.
ifail=4
On entry, korder(value)=value and n=value.
Constraint: 1korder(i)n, for i=1,2,,m.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

Not applicable.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
g02cef is not threaded in any implementation.

9 Further Comments

The time taken by g02cef depends on n and m.
The routine is intended primarily for use when a subset of variables from a larger set of variables is to be used in a regression, and is described accordingly. There is however no reason why the routine should not also be used to select specific rows and columns from vectors and arrays which contain any other non-statistical information; the matrices need not be symmetric.
The routine 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.

10 Example

This example reads in the means, standard deviations, sums of squares and cross-products, and correlation coefficients for four variables. New vectors and matrices are created containing the means, standard deviations, sums of squares and cross-products, and correlation coefficients for the fourth, first and second variables (in that order). Finally these new vectors and matrices are printed.

10.1 Program Text

Program Text (g02cefe.f90)

10.2 Program Data

Program Data (g02cefe.d)

10.3 Program Results

Program Results (g02cefe.r)