hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_stat_inv_cdf_students_t_vector (g01tb)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_stat_inv_cdf_students_t_vector (g01tb) returns a number of deviates associated with given probabilities of Student's t-distribution with real degrees of freedom.

Syntax

[t, ivalid, ifail] = g01tb(tail, p, df, 'ltail', ltail, 'lp', lp, 'ldf', ldf)
[t, ivalid, ifail] = nag_stat_inv_cdf_students_t_vector(tail, p, df, 'ltail', ltail, 'lp', lp, 'ldf', ldf)

Description

The deviate, tpi associated with the lower tail probability, pi, of the Student's t-distribution with νi degrees of freedom is defined as the solution to
P Ti < tpi :νi = pi = Γ νi+1 / 2 νiπ Γ νi/2 - tpi 1 + Ti2 νi - νi+1 / 2 d Ti ,   νi 1 ; ​ - < tpi < .  
For νi=1​ or ​2 the integral equation is easily solved for tpi.
For other values of νi<3 a transformation to the beta distribution is used and the result obtained from nag_stat_inv_cdf_beta (g01fe).
For νi3 an inverse asymptotic expansion of Cornish–Fisher type is used. The algorithm is described by Hill (1970).
The input arrays to this function are designed to allow maximum flexibility in the supply of vector arguments by re-using elements of any arrays that are shorter than the total number of evaluations required. See Vectorized Routines in the G01 Chapter Introduction for further information.

References

Hastings N A J and Peacock J B (1975) Statistical Distributions Butterworth
Hill G W (1970) Student's t-distribution Comm. ACM 13(10) 617–619

Parameters

Compulsory Input Parameters

1:     tailltail – cell array of strings
Indicates which tail the supplied probabilities represent. For j= i-1 mod ltail +1 , for i=1,2,,maxltail,lp,ldf:
tailj='L'
The lower tail probability, i.e., pi = P Ti tpi :νi .
tailj='U'
The upper tail probability, i.e., pi = P Ti tpi :νi .
tailj='C'
The two tail (confidence interval) probability,
i.e., pi = P Ti tpi :νi - P Ti - tpi :νi .
tailj='S'
The two tail (significance level) probability,
i.e., pi = P Ti tpi :νi + P Ti - tpi :νi .
Constraint: tailj='L', 'U', 'C' or 'S', for j=1,2,,ltail.
2:     plp – double array
pi, the probability of the required Student's t-distribution as defined by tail with pi=pj, j=i-1 mod lp+1.
Constraint: 0.0<pj<1.0, for j=1,2,,lp.
3:     dfldf – double array
νi, the degrees of freedom of the Student's t-distribution with νi=dfj, j=i-1 mod ldf+1.
Constraint: dfj1.0, for j=1,2,,ldf.

Optional Input Parameters

1:     ltail int64int32nag_int scalar
Default: the dimension of the array tail.
The length of the array tail.
Constraint: ltail>0.
2:     lp int64int32nag_int scalar
Default: the dimension of the array p.
The length of the array p.
Constraint: lp>0.
3:     ldf int64int32nag_int scalar
Default: the dimension of the array df.
The length of the array df.
Constraint: ldf>0.

Output Parameters

1:     t: – double array
The dimension of the array t will be maxltail,lp,ldf
tpi, the deviates for the Student's t-distribution.
2:     ivalid: int64int32nag_int array
The dimension of the array ivalid will be maxltail,lp,ldf
ivalidi indicates any errors with the input arguments, with
ivalidi=0
No error.
ivalidi=1
On entry,invalid value supplied in tail when calculating tpi.
ivalidi=2
On entry,pi0.0,
orpi1.0.
ivalidi=3
On entry,νi<1.0.
ivalidi=4
The solution has failed to converge. The result returned should represent an approximation to the solution.
3:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:

Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.

W  ifail=1
On entry, at least one value of tail, p or df was invalid, or the solution failed to converge.
Check ivalid for more information.
   ifail=2
Constraint: ltail>0.
   ifail=3
Constraint: lp>0.
   ifail=4
Constraint: ldf>0.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

The results should be accurate to five significant digits, for most argument values. The error behaviour for various argument values is discussed in Hill (1970).

Further Comments

The value tpi may be calculated by using a transformation to the beta distribution and calling nag_stat_inv_cdf_beta_vector (g01te). This function allows you to set the required accuracy.

Example

This example reads the probability, the tail that probability represents and the degrees of freedom for a number of Student's t-distributions and computes the corresponding deviates.
function g01tb_example


fprintf('g01tb example results\n\n');

p    = [0.01; 0.01; 0.99];
df   = [20;   7.5;  45];
tail = {'S';  'L';  'C'};
[x, ivalid, ifail] = g01tb( ...
                            tail, p, df);

fprintf('     p      df    tail      x\n');
lp    = numel(p);
ldf   = numel(df);
ltail = numel(tail);
len   = max ([lp, ldf, ltail]);
for i=0:len-1
 fprintf('%8.3f%8.3f   %c   %8.3f\n', p(mod(i,lp)+1), df(mod(i,ldf)+1), ...
         tail{mod(i,ltail)+1}, x(i+1));
end


g01tb example results

     p      df    tail      x
   0.010  20.000   S      2.845
   0.010   7.500   L     -2.943
   0.990  45.000   C      2.690

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

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