NAG Library Routine Document
g08ecf (randtest_triplets)
1
Purpose
g08ecf performs the triplets test on a sequence of observations from the interval .
2
Specification
Fortran Interface
Subroutine g08ecf ( |
cl, n, x, msize, ncount, ldc, ex, chi, df, prob, ifail) |
Integer, Intent (In) | :: | n, msize, ldc | Integer, Intent (Inout) | :: | ncount(ldc,ldc,msize), ifail | Real (Kind=nag_wp), Intent (In) | :: | x(n) | Real (Kind=nag_wp), Intent (Out) | :: | ex, chi, df, prob | Character (1), Intent (In) | :: | cl |
|
C Header Interface
#include <nagmk26.h>
void |
g08ecf_ (const char *cl, const Integer *n, const double x[], const Integer *msize, Integer ncount[], const Integer *ldc, double *ex, double *chi, double *df, double *prob, Integer *ifail, const Charlen length_cl) |
|
3
Description
g08ecf computes the statistics for performing a triplets test which may be used to investigate deviations from randomness in a sequence, , of observations.
An
by
matrix,
, of counts is formed as follows. The element
of
is the number of triplets
for
, such that
Note that all triplets formed are non-overlapping and are thus independent under the assumption of randomness.
Under the assumption that the sequence is random, the expected number of triplets for each class (i.e., each element of the count matrix) is the same; that is, the triplets should be uniformly distributed over the unit cube . Thus the expected number of triplets for each class is just the total number of triplets, , divided by the number of classes, .
The
test statistic used to test the hypothesis of randomness is defined as
where
expected number of triplets in each class.
The use of the -distribution as an approximation to the exact distribution of the test statistic, , improves as the length of the sequence relative to increases and hence the expected value, , increases.
g08ecf may be used in two different modes:
(i) |
a single call to g08ecf which computes all test statistics after counting the triplets; |
(ii) |
multiple calls to g08ecf with the final test statistics only being computed in the last call. |
The second mode is necessary if all the data do not fit into the memory. See argument
cl in
Section 5 for details on how to invoke each mode.
4
References
Dagpunar J (1988) Principles of Random Variate Generation Oxford University Press
Knuth D E (1981) The Art of Computer Programming (Volume 2) (2nd Edition) Addison–Wesley
Morgan B J T (1984) Elements of Simulation Chapman and Hall
Ripley B D (1987) Stochastic Simulation Wiley
5
Arguments
- 1: – Character(1)Input
-
On entry: indicates the type of call to
g08ecf.
- This is the one and only call to g08ecf (single call mode). All data are to be input at once. All test statistics are computed after counting of the triplets is complete.
- This is the first call to the routine. All initializations are carried out and the counting of triplets begins. The final test statistics are not computed since further calls will be made to g08ecf.
- This is an intermediate call during which counts of the triplets are updated. The final test statistics are not computed since further calls will be made to g08ecf.
- This is the last call to g08ecf. The test statistics are computed after the final counting of the triplets is complete.
Constraint:
, , or .
- 2: – IntegerInput
-
On entry: , the number of observations.
Constraints:
- if , ;
- otherwise .
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry: the sequence of observations.
Constraint:
, for .
- 4: – IntegerInput
-
On entry:
, the size of the count matrix to be formed.
msize must not be changed between calls to
g08ecf.
Constraint:
.
- 5: – Integer arrayInput/Output
-
On entry: if
or
,
ncount need not be set.
If
or
,
ncount must contain the values returned by the previous call to
g08ecf.
On exit: is an
msize by
msize by
msize matrix containing the counts of the number of triplets,
, for
,
and
.
- 6: – IntegerInput
-
On entry: the first dimension of the array
ncount and the second dimension of the array
ncount as declared in the (sub)program from which
g08ecf is called.
Constraint:
.
- 7: – Real (Kind=nag_wp)Output
-
On exit: if
or
(i.e., if it is a final exit) then
ex contains the expected number of counts for each element of the count matrix.
- 8: – Real (Kind=nag_wp)Output
-
On exit: if
or
(i.e., if it is a final exit) then
chi contains the
test statistic,
, for testing the null hypothesis of randomness.
Otherwise
chi is not set.
- 9: – Real (Kind=nag_wp)Output
-
On exit: if
or
(i.e., if it is a final exit) then
df contains the degrees of freedom for the
statistic.
- 10: – Real (Kind=nag_wp)Output
-
On exit: if
or
(i.e., if it is a final exit) then
prob contains the upper tail probability associated with the
test statistic, i.e., the significance level.
Otherwise
prob is not set.
- 11: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if
on exit, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Note: g08ecf may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
-
On entry, .
Constraint: , , or .
-
On entry, .
Constraint: if , , otherwise .
-
On entry, .
Constraint: .
-
On entry, and .
Constraint: .
-
On entry, at least one element of
x is out of range.
Constraint:
, for
.
-
No triplets were found because less than observations were provided in total.
-
msize is too large relative to the number of triplets, therefore the expected value for at least one cell is less than or equal to
.
This implies that the
distribution may not be a very good approximation to the distribution of the test statistic.
, number of triplets
and
.
All statistics are returned and may still be of use.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
The computations are believed to be stable. The computations of
prob given the values of
chi and
df will obtain a relative accuracy of five significant figures for most cases.
8
Parallelism and Performance
g08ecf is not thread safe and should not be called from a multithreaded user program. Please see
Section 3.12.1 in How to Use the NAG Library and its Documentation for more information on thread safety.
g08ecf is not threaded in any implementation.
If the call to g08ecf is an initial call or intermediate call with further calls to follow then any unused observations are saved for use at the beginning of the new sequence provided in the following call. Clearly any observations left over from an only or final call to g08ecf are ignored.
The time taken by the routine increases with the number of observations , and also depends to some extent whether the call to g08ecf is an only, first, intermediate or last call.
10
Example
The following program performs the triplets test on pseudorandom numbers. g08ecf is called times with observations on each call. The triplets are tallied into a by by matrix.
10.1
Program Text
Program Text (g08ecfe.f90)
10.2
Program Data
Program Data (g08ecfe.d)
10.3
Program Results
Program Results (g08ecfe.r)