g02bt updates the sample means and sums of squares and cross-products, or sums of squares and cross-products of deviations about the mean, for a new observation. The data may be weighted.

Syntax

C#
public static void g02bt(
	string mean,
	int m,
	double wt,
	double[] x,
	int incx,
	ref double sw,
	double[] xbar,
	double[] c,
	out int ifail
)
Visual Basic
Public Shared Sub g02bt ( _
	mean As String, _
	m As Integer, _
	wt As Double, _
	x As Double(), _
	incx As Integer, _
	ByRef sw As Double, _
	xbar As Double(), _
	c As Double(), _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void g02bt(
	String^ mean, 
	int m, 
	double wt, 
	array<double>^ x, 
	int incx, 
	double% sw, 
	array<double>^ xbar, 
	array<double>^ c, 
	[OutAttribute] int% ifail
)
F#
static member g02bt : 
        mean : string * 
        m : int * 
        wt : float * 
        x : float[] * 
        incx : int * 
        sw : float byref * 
        xbar : float[] * 
        c : float[] * 
        ifail : int byref -> unit 

Parameters

mean
Type: System..::..String
On entry: indicates whether g02bt is to calculate sums of squares and cross-products, or sums of squares and cross-products of deviations about the mean.
mean="M"
The sums of squares and cross-products of deviations about the mean are calculated.
mean="Z"
The sums of squares and cross-products are calculated.
Constraint: mean="M" or "Z".
m
Type: System..::..Int32
On entry: m, the number of variables.
Constraint: m1.
wt
Type: System..::..Double
On entry: the weight to use for the current observation, wi.
For unweighted means and cross-products set wt=1.0. The use of a suitable negative value of wt, e.g., -wi will have the effect of deleting the observation.
x
Type: array<System..::..Double>[]()[][]
An array of size [m×incx]
On entry: x[j-1×incx] must contain the value of the jth variable for the current observation, j=1,2,,m.
incx
Type: System..::..Int32
On entry: the increment of x.
If incx=ldx, for some positive integer ldx, the data values are to be found as a row of an array with first dimension ldx.
Constraint: incx>0.
sw
Type: System..::..Double%
On entry: the sum of weights for the previous observations, Wi-1.
sw=0.0
The update procedure is initialized.
sw+wt=0.0
All elements of xbar and c are set to zero.
Constraint: sw0.0 and sw+wt0.0.
On exit: contains the updated sum of weights, Wi.
xbar
Type: array<System..::..Double>[]()[][]
An array of size [m]
On entry: if sw=0.0, xbar is initialized, otherwise xbar[j-1] must contain the weighted mean of the jth variable for the previous i-1 observations, x-ji-1, for j=1,2,,m.
On exit: xbar[j-1] contains the weighted mean of the jth variable, x-ji, for j=1,2,,m.
c
Type: array<System..::..Double>[]()[][]
An array of size [m×m+m/2]
On entry: if sw0.0, c must contain the upper triangular part of the matrix of weighted sums of squares and cross-products or weighted sums of squares and cross-products of deviations about the mean. It is stored packed form by column, i.e., the cross-product between the jth and kth variable, kj, is stored in c[k×k-1/2+j-1].
On exit: the update sums of squares and cross-products stored as on input.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

Description

g02bt is an adaptation of West's WV2 algorithm; see West (1979). This method updates the weighted means of variables and weighted sums of squares and cross-products or weighted sums of squares and cross-products of deviations about the mean for observations on m variables Xj, for j=1,2,,m. For the first i-1 observations let the mean of the jth variable be x-ji-1, the cross-product about the mean for the jth and kth variables be cjki-1 and the sum of weights be Wi-1. These are updated by the ith observation, xij, for j=1,2,,m, with weight wi as follows:
Wi=Wi-1+wi,  x-ji=x-ji-1+wiWixj-x-ji-1,  j=1,2,,m
and
cjki=cjki-1+wiWixj-x-ji-1xk-x-ki-1Wi-1,  j=1,2,,m;k=j,j+1,2,,m.
The algorithm is initialized by taking x-j1=x1j, the first observation and cij1=0.0.
For the unweighted case wi=1 and Wi=i for all i.

References

Chan T F, Golub G H and Leveque R J (1982) Updating Formulae and a Pairwise Algorithm for Computing Sample Variances Compstat, Physica-Verlag
West D H D (1979) Updating mean and variance estimates: An improved method Comm. ACM 22 532–555

Error Indicators and Warnings

Errors or warnings detected by the method:
ifail=1
On entry,m<1,
orincx<1.
ifail=2
On entry,sw<0.0.
ifail=3
On entry,sw+wt<0.0, the current weight causes the sum of weights to be less than 0.0.
ifail=4
On entry,mean"M" or "Z".
ifail=-9000
An error occured, see message report.
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

Accuracy

For a detailed discussion of the accuracy of this method see Chan et al. (1982) and West (1979).

Parallelism and Performance

None.

Further Comments

g02bt may be used to update the results returned by g02bu.
g02bw may be used to calculate the correlation matrix from the matrix of sums of squares and cross-products of deviations about the mean and the matrix may be scaled using (F06EDF not in this release) f06fd to produce a variance-covariance matrix.

Example

A program to calculate the means, the required sums of squares and cross-products matrix, and the variance matrix for a set of 3 observations of 3 variables.

Example program (C#): g02bte.cs

Example program data: g02bte.d

Example program results: g02bte.r

See Also