g01dc computes an approximation to the variance-covariance matrix of an ordered set of independent observations from a Normal distribution with mean and standard deviation .
Syntax
C# |
---|
public static void g01dc( int n, double exp1, double exp2, double sumssq, double[] vec, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g01dc ( _ n As Integer, _ exp1 As Double, _ exp2 As Double, _ sumssq As Double, _ vec As Double(), _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g01dc( int n, double exp1, double exp2, double sumssq, array<double>^ vec, [OutAttribute] int% ifail ) |
F# |
---|
static member g01dc : n : int * exp1 : float * exp2 : float * sumssq : float * vec : float[] * ifail : int byref -> unit |
Parameters
- n
- Type: System..::..Int32On entry: , the sample size.Constraint: .
- exp1
- Type: System..::..DoubleOn entry: the expected value of the largest Normal order statistic, , from a sample of size .
- exp2
- Type: System..::..DoubleOn entry: the expected value of the second largest Normal order statistic, , from a sample of size .
- sumssq
- Type: System..::..DoubleOn entry: the sum of squares of the expected values of the Normal order statistics from a sample of size .
- vec
- Type: array<System..::..Double>[]()[][]An array of size []On exit: the upper triangle of the by variance-covariance matrix packed by column. Thus element is stored in , for .
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
g01dc is an adaptation of the Applied Statistics Algorithm AS 128, see Davis and Stephens (1978). An approximation to the variance-covariance matrix, , 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 method 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 , let be the expected value of the th largest order statistic, then:
(a) | for any , |
(b) | |
(c) | the trace of is |
(d) | where , and . Note that only the upper triangle of the matrix is calculated and returned column-wise in vector form. |
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
Error Indicators and Warnings
Errors or warnings detected by the method:
On entry, .
Accuracy
For , where comparison with the exact values can be made, the maximum error is less than .
Parallelism and Performance
None.
Further Comments
The time taken by g01dc is approximately proportional to .