NAG Library Routine Document

g02bzf  (ssqmat_combine)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

g02bzf combines two sets of sample means and sums of squares and cross-products matrices. It is designed to be used in conjunction with g02buf to allow large datasets to be summarised.

2
Specification

Fortran Interface
Subroutine g02bzf ( mean, m, xsw, xmean, xc, ysw, ymean, yc, ifail)
Integer, Intent (In):: m
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (In):: ysw, ymean(m), yc((m*m+m)/2)
Real (Kind=nag_wp), Intent (Inout):: xsw, xmean(m), xc((m*m+m)/2)
Character (1), Intent (In):: mean
C Header Interface
#include nagmk26.h
void  g02bzf_ ( const char *mean, const Integer *m, double *xsw, double xmean[], double xc[], const double *ysw, const double ymean[], const double yc[], Integer *ifail, const Charlen length_mean)

3
Description

Let X and Y denote two sets of data, each with m variables and nx and ny observations respectively. Let μx denote the (optionally weighted) vector of m means for the first dataset and Cx denote either the sums of squares and cross-products of deviations from μx 
Cx= X-e μxT T Dx X-e μxT  
or the sums of squares and cross-products, in which case
Cx = XT Dx X  
where e is a vector of nx ones and Dx is a diagonal matrix of (optional) weights and Wx is defined as the sum of the diagonal elements of D. Similarly, let μy, Cy and Wy denote the same quantities for the second dataset.
Given μx, μy, Cx, Cy, Wx  and Wy  g02bzf calculates μz, Cz and Wz as if a dataset Z, with m variables and nx+ny observations were supplied to g02buf, with Z constructed as
Z = X Y .  
g02bzf has been designed to combine the results from two calls to g02buf allowing large datasets, or cases where all the data is not available at the same time, to be summarised.

4
References

Bennett J, Pebay P, Roe D and Thompson D (2009) Numerically stable, single-pass, parallel statistics algorithms Proceedings of IEEE International Conference on Cluster Computing

5
Arguments

1:     mean – Character(1)Input
On entry: indicates whether the matrices supplied in xc and yc are sums of squares and cross-products, or sums of squares and cross-products of deviations about the mean.
mean='M'
Sums of squares and cross-products of deviations about the mean have been supplied.
mean='Z'
Sums of squares and cross-products have been supplied.
Constraint: mean='M' or 'Z'.
2:     m – IntegerInput
On entry: m, the number of variables.
Constraint: m1.
3:     xsw – Real (Kind=nag_wp)Input/Output
On entry: Wx, the sum of weights, from the first set of data, X. If the data is unweighted then this will be the number of observations in the first dataset.
On exit: Wz, the sum of weights, from the combined dataset, Z. If both datasets are unweighted then this will be the number of observations in the combined dataset.
Constraint: xsw0.
4:     xmeanm – Real (Kind=nag_wp) arrayInput/Output
On entry: μx, the sample means for the first set of data, X.
On exit: μz, the sample means for the combined data, Z.
5:     xcm×m+m/2 – Real (Kind=nag_wp) arrayInput/Output
On entry: Cx, the sums of squares and cross-products matrix for the first set of data, X, as returned by g02buf.
g02buf, returns this matrix packed by columns, i.e., the cross-product between the jth and kth variable, kj, is stored in xck×k-1/2+j.
No check is made that Cx is a valid cross-products matrix.
On exit: Cz, the sums of squares and cross-products matrix for the combined dataset, Z.
This matrix is again stored packed by columns.
6:     ysw – Real (Kind=nag_wp)Input
On entry: Wy, the sum of weights, from the second set of data, Y. If the data is unweighted then this will be the number of observations in the second dataset.
Constraint: ysw0.
7:     ymeanm – Real (Kind=nag_wp) arrayInput
On entry: μy, the sample means for the second set of data, Y.
8:     ycm×m+m/2 – Real (Kind=nag_wp) arrayInput
On entry: Cy, the sums of squares and cross-products matrix for the second set of data, Y, as returned by g02buf.
g02buf, returns this matrix packed by columns, i.e., the cross-product between the jth and kth variable, kj, is stored in yck×k-1/2+j.
No check is made that Cy is a valid cross-products matrix.
9:     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=11
On entry, mean=value was an illegal value.
ifail=21
On entry, m=value.
Constraint: m1.
ifail=31
On entry, xsw=value.
Constraint: xsw0.0.
ifail=61
On entry, ysw=value.
Constraint: ysw0.0.
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.

7
Accuracy

Not applicable.

8
Parallelism and Performance

g02bzf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9
Further Comments

None.

10
Example

This example illustrates the use of g02bzf by dividing a dataset into three blocks of 4, 5 and 3 observations respectively. Each block of data is summarised using g02buf and then the three summaries combined using g02bzf.
The resulting sums of squares and cross-products matrix is then scaled to obtain the covariance matrix for the whole dataset.

10.1
Program Text

Program Text (g02bzfe.f90)

10.2
Program Data

Program Data (g02bzfe.d)

10.3
Program Results

Program Results (g02bzfe.r)

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