NAG FL Interface
g01hdf (prob_​multi_​students_​t)

1 Purpose

g01hdf returns a probability associated with a multivariate Student's t-distribution.

2 Specification

Fortran Interface
Function g01hdf ( n, tail, a, b, nu, delta, iscov, rc, ldrc, epsabs, epsrel, numsub, nsampl, fmax, errest, ifail)
Real (Kind=nag_wp) :: g01hdf
Integer, Intent (In) :: n, iscov, ldrc, numsub, nsampl, fmax
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: a(n), b(n), nu, delta(n), epsabs, epsrel
Real (Kind=nag_wp), Intent (Inout) :: rc(ldrc,n)
Real (Kind=nag_wp), Intent (Out) :: errest
Character (1), Intent (In) :: tail(n)
C Header Interface
#include <nag.h>
double  g01hdf_ (const Integer *n, const char tail[], const double a[], const double b[], const double *nu, const double delta[], const Integer *iscov, double rc[], const Integer *ldrc, const double *epsabs, const double *epsrel, const Integer *numsub, const Integer *nsampl, const Integer *fmax, double *errest, Integer *ifail, const Charlen length_tail)
The routine may be called by the names g01hdf or nagf_stat_prob_multi_students_t.

3 Description

A random vector xn that follows a Student's t-distribution with ν degrees of freedom and covariance matrix Σ has density:
Γ ν+n / 2 Γ ν/2 νn/2 πn/2 Σ 1/2 1+ 1ν xT Σ-1x ν+n / 2 ,  
and probability p given by:
p = Γ ν+n / 2 Γ ν/2 Σ πνn a1 b1 a2 b2 an bn 1+ xT Σ-1x/ν - ν+n/2 dx .  
The method of calculation depends on the dimension n and degrees of freedom ν. The method of Dunnet and Sobel is used in the bivariate case if ν is a whole number. A Plackett transform followed by quadrature method is adopted in other bivariate cases and trivariate cases. In dimensions higher than three a number theoretic approach to evaluating multidimensional integrals is adopted.
Error estimates are supplied as the published accuracy in the Dunnet and Sobel case, a Monte Carlo standard error for multidimensional integrals, and otherwise the quadrature error estimate.
A parameter δ allows for non-central probabilities. The number theoretic method is used if any δ is nonzero.
In cases other than the central bivariate with whole ν, g01hdf attempts to evaluate probabilities within a requested accuracy maxεa,εr×I, for an approximate integral value I, absolute accuracy εa and relative accuracy εr.

4 References

Dunnet C W and Sobel M (1954) A bivariate generalization of Student's t-distribution, with tables for certain special cases Biometrika 41 153–169
Genz A and Bretz F (2002) Methods for the computation of multivariate t-probabilities Journal of Computational and Graphical Statistics (11) 950–971

5 Arguments

1: n Integer Input
On entry: n, the number of dimensions.
Constraint: 1<n1000.
2: tailn Character(1) array Input
On entry: defines the calculated probability, set taili to:
taili='L'
If the ith lower limit ai is negative infinity.
taili='U'
If the ith upper limit bi is infinity.
taili='C'
If both ai and bi are finite.
Constraint: taili='L', 'U' or 'C', for i=1,2,,n.
3: an Real (Kind=nag_wp) array Input
On entry: ai, for i=1,2,,n, the lower integral limits of the calculation.
If taili='L', ai is not referenced and the ith lower limit of integration is -.
4: bn Real (Kind=nag_wp) array Input
On entry: bi, for i=1,2,,n, the upper integral limits of the calculation.
If taili='U', bi is not referenced and the ith upper limit of integration is .
Constraint: if taili='C', bi>ai.
5: nu Real (Kind=nag_wp) Input
On entry: ν, the degrees of freedom.
Constraint: nu>0.0.
6: deltan Real (Kind=nag_wp) array Input
On entry: deltai the noncentrality parameter for the ith dimension, for i=1,2,,n; set deltai=0 for the central probability.
7: iscov Integer Input
On entry: set iscov=1 if the covariance matrix is supplied and iscov=2 if the correlation matrix is supplied.
Constraint: iscov=1 or 2.
8: rcldrcn Real (Kind=nag_wp) array Input/Output
On entry: the lower triangle of either the covariance matrix (if iscov=1) or the correlation matrix (if iscov=2). In either case the array elements corresponding to the upper triangle of the matrix need not be set.
On exit: the strict upper triangle of rc contains the correlation matrix used in the calculations.
9: ldrc Integer Input
On entry: the first dimension of the array rc as declared in the (sub)program from which g01hdf is called.
Constraint: ldrcn.
10: epsabs Real (Kind=nag_wp) Input
On entry: εa, the absolute accuracy requested in the approximation. If epsabs is negative, the absolute value is used.
Suggested value: 0.0.
11: epsrel Real (Kind=nag_wp) Input
On entry: εr, the relative accuracy requested in the approximation. If epsrel is negative, the absolute value is used.
Suggested value: 0.001.
12: numsub Integer Input
On entry: if quadrature is used, the number of sub-intervals used by the quadrature algorithm; otherwise numsub is not referenced.
Suggested value: 350.
Constraint: if referenced, numsub>0.
13: nsampl Integer Input
On entry: if quadrature is used, nsampl is not referenced; otherwise nsampl is the number of samples used to estimate the error in the approximation.
Suggested value: 8.
Constraint: if referenced,nsampl>0.
14: fmax Integer Input
On entry: if a number theoretic approach is used, the maximum number of evaluations for each integrand function.
Suggested value: 1000×n.
Constraint: if referenced,fmax1.
15: errest Real (Kind=nag_wp) Output
On exit: an estimate of the error in the calculated probability.
16: ifail Integer Input/Output
On entry: ifail must be set to 0, -1 or 1. If you are unfamiliar with this argument you should refer to Section 4 in the Introduction to the NAG Library FL Interface 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=1
On entry, n=value.
Constraint: 1<n1000.
ifail=2
On entry, tailk=value.
Constraint: tailk='L', 'U' or 'C'.
ifail=4
On entry, k=value.
Constraint: bk>ak for a central probability.
ifail=5
On entry, nu=value.
Constraint: degrees of freedom nu>0.0.
ifail=8
On entry, iscov=value.
Constraint: iscov=1 or 2.
ifail=9
On entry, the information supplied in rc is invalid.
ifail=10
On entry, ldrc=value and n=value.
Constraint: ldrcn.
ifail=12
On entry, numsub=value.
Constraint: numsub1.
ifail=13
On entry, nsampl=value.
Constraint: nsampl1.
ifail=14
On entry, fmax=value.
Constraint: fmax1.
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

An estimate of the error in the calculation is given by the value of errest on exit.

8 Parallelism and Performance

g01hdf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g01hdf 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 prints two probabilities from the Student's t-distribution.

10.1 Program Text

Program Text (g01hdfe.f90)

10.2 Program Data

Program Data (g01hdfe.d)

10.3 Program Results

Program Results (g01hdfe.r)