PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_stat_prob_students_t_noncentral (g01gb)
Purpose
nag_stat_prob_students_t_noncentral (g01gb) returns the lower tail probability for the noncentral Student's -distribution.
Syntax
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 23: |
tol was made optional (default 0) |
Description
The lower tail probability of the noncentral Student's
-distribution with
degrees of freedom and noncentrality parameter
,
, is defined by
with
The probability is computed in one of two ways.
(i) |
When , the relationship to the normal is used:
|
(ii) |
Otherwise the series expansion described in Equation 9 of Amos (1964) is used. This involves the sums of confluent hypergeometric functions, the terms of which are computed using recurrence relationships. |
References
Amos D E (1964) Representations of the central and non-central -distributions Biometrika 51 451–458
Parameters
Compulsory Input Parameters
- 1:
– double scalar
-
, the deviate from the Student's -distribution with degrees of freedom.
- 2:
– double scalar
-
, the degrees of freedom of the Student's -distribution.
Constraint:
.
- 3:
– double scalar
-
, the noncentrality argument of the Students -distribution.
Optional Input Parameters
- 1:
– double scalar
Default:
The absolute accuracy required by you in the results. If
nag_stat_prob_students_t_noncentral (g01gb) is entered with
tol greater than or equal to
or less than
(see
nag_machine_precision (x02aj)), then the value of
is used instead.
- 2:
– int64int32nag_int scalar
Default:
. See
Further Comments for further comments.
The maximum number of terms that are used in each of the summations.
Constraint:
.
Output Parameters
- 1:
– double scalar
The result of the function.
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
If on exit , then nag_stat_prob_students_t_noncentral (g01gb) returns .
-
-
-
-
-
-
One of the series has failed to converge. Reconsider the requested tolerance and/or maximum number of iterations.
-
-
The probability is too small to calculate accurately.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
The series described in
Amos (1964) are summed until an estimated upper bound on the contribution of future terms to the probability is less than
tol. There may also be some loss of accuracy due to calculation of gamma functions.
Further Comments
The rate of convergence of the series depends, in part, on the quantity . The smaller this quantity the faster the convergence. Thus for large and small the convergence may be slow. If is an integer then one of the series to be summed is of finite length.
If two tail probabilities are required then the relationship of the
-distribution to the
-distribution can be used:
and a call made to
nag_stat_prob_f_noncentral (g01gd).
Note that nag_stat_prob_students_t_noncentral (g01gb) only allows degrees of freedom greater than or equal to although values between and are theoretically possible.
Example
This example reads values from, and degrees of freedom for, and noncentrality arguments of the noncentral Student's -distributions, calculates the lower tail probabilities and prints all these values until the end of data is reached.
Open in the MATLAB editor:
g01gb_example
function g01gb_example
fprintf('g01gb example results\n\n');
t = [ -1.528 -0.188 1.138];
df = [ 20 7.5 45 ];
delta = [ 2 1 0 ];
p = t;
fprintf(' t df delta p\n');
for j = 1:numel(t)
[p(j), ifail] = g01gb( ...
t(j), df(j), delta(j));
end
fprintf('%8.3f%8.3f%8.3f%8.4f\n', [t; df; delta; p]);
g01gb example results
t df delta p
-1.528 20.000 2.000 0.0003
-0.188 7.500 1.000 0.1189
1.138 45.000 0.000 0.8694
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015