nag_normal_scores_var (g01dcc) (PDF version)
g01 Chapter Contents
g01 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_normal_scores_var (g01dcc)

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_normal_scores_var (g01dcc) computes an approximation to the variance-covariance matrix of an ordered set of independent observations from a Normal distribution with mean 0.0 and standard deviation 1.0.

2  Specification

#include <nag.h>
#include <nagg01.h>
void  nag_normal_scores_var (Integer n, double exp1, double exp2, double sumssq, double vec[], NagError *fail)

3  Description

nag_normal_scores_var (g01dcc) is an adaptation of the Applied Statistics Algorithm AS 128, see Davis and Stephens (1978). An approximation to the variance-covariance matrix, V, using a Taylor series expansion of the Normal distribution function is discussed in David and Johnson (1954).
However, convergence is slow for extreme variances and covariances. The present function uses the David–Johnson approximation to provide an initial approximation and improves upon it by use of the following identities for the matrix.
For a sample of size n, let mi be the expected value of the ith largest order statistic, then:
(a) for any i=1,2,,n, j=1nVij=1
(b) V12=V11+mn2-mnmn-1-1
(c) the trace of V is trV=n-i=1nmi2
(d) Vij=Vji=Vrs=Vsr where r=n+1-i, s=n+1-j and i,j=1,2,,n. Note that only the upper triangle of the matrix is calculated and returned column-wise in vector form.

4  References

David F N and Johnson N L (1954) Statistical treatment of censored data, Part 1. Fundamental formulae Biometrika 41 228–240
Davis C S and Stephens M A (1978) Algorithm AS 128: approximating the covariance matrix of Normal order statistics Appl. Statist. 27 206–212

5  Arguments

1:     n IntegerInput
On entry: n, the sample size.
Constraint: n>0.
2:     exp1 doubleInput
On entry: the expected value of the largest Normal order statistic, mn, from a sample of size n.
3:     exp2 doubleInput
On entry: the expected value of the second largest Normal order statistic, mn-1, from a sample of size n.
4:     sumssq doubleInput
On entry: the sum of squares of the expected values of the Normal order statistics from a sample of size n.
5:     vec[n×n+1/2] doubleOutput
On exit: the upper triangle of the n by n variance-covariance matrix packed by column. Thus element Vij is stored in vec[i+j×j-1/2-1], for 1ijn.
6:     fail NagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.2.1.2 in the Essential Introduction for further information.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, n=value.
Constraint: n>0.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
An unexpected error has been triggered by this function. Please contact NAG.
See Section 3.6.6 in the Essential Introduction for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 3.6.5 in the Essential Introduction for further information.

7  Accuracy

For n20, where comparison with the exact values can be made, the maximum error is less than 0.0001.

8  Parallelism and Performance

Not applicable.

9  Further Comments

The time taken by nag_normal_scores_var (g01dcc) is approximately proportional to n2.
The arguments exp1 (=mn), exp2 (=mn-1) and sumssq (=j=1nmj2) may be found from the expected values of the Normal order statistics obtained from nag_normal_scores_exact (g01dac) .

10  Example

A program to compute the variance-covariance matrix for a sample of size 6. nag_normal_scores_exact (g01dac) is called to provide values for exp1, exp2 and sumssq.

10.1  Program Text

Program Text (g01dcce.c)

10.2  Program Data

None.

10.3  Program Results

Program Results (g01dcce.r)


nag_normal_scores_var (g01dcc) (PDF version)
g01 Chapter Contents
g01 Chapter Introduction
NAG Library Manual

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