PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_nonpar_randtest_triplets (g08ec)
Purpose
nag_nonpar_randtest_triplets (g08ec) performs the triplets test on a sequence of observations from the interval .
Syntax
[
ncount,
ex,
chi,
df,
prob,
ifail] = g08ec(
cl,
x,
ncount, 'n',
n, 'msize',
msize)
[
ncount,
ex,
chi,
df,
prob,
ifail] = nag_nonpar_randtest_triplets(
cl,
x,
ncount, 'n',
n, 'msize',
msize)
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 22: |
msize was made optional |
Description
nag_nonpar_randtest_triplets (g08ec) 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.
nag_nonpar_randtest_triplets (g08ec) may be used in two different modes:
(i) |
a single call to nag_nonpar_randtest_triplets (g08ec) which computes all test statistics after counting the triplets; |
(ii) |
multiple calls to nag_nonpar_randtest_triplets (g08ec) 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
Arguments for details on how to invoke each mode.
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
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
Indicates the type of call to
nag_nonpar_randtest_triplets (g08ec).
- This is the one and only call to nag_nonpar_randtest_triplets (g08ec) (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 function. 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 nag_nonpar_randtest_triplets (g08ec).
- 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 nag_nonpar_randtest_triplets (g08ec).
- This is the last call to nag_nonpar_randtest_triplets (g08ec). The test statistics are computed after the final counting of the triplets is complete.
Constraint:
, , or .
- 2:
– double array
-
The sequence of observations.
Constraint:
, for .
- 3:
– int64int32nag_int array
-
ldc, the first dimension of the array, must satisfy the constraint
.
If
or
,
ncount need not be set.
If
or
,
ncount must contain the values returned by the previous call to
nag_nonpar_randtest_triplets (g08ec).
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
x.
, the number of observations.
Constraints:
- if , ;
- otherwise .
- 2:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
ncount and the third dimension of the array
ncount. (An error is raised if these dimensions are not equal.)
, the size of the count matrix to be formed.
msize must not be changed between calls to
nag_nonpar_randtest_triplets (g08ec).
Constraint:
.
Output Parameters
- 1:
– int64int32nag_int array
-
Is an
msize by
msize by
msize matrix containing the counts of the number of triplets,
, for
,
and
.
- 2:
– double scalar
-
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.
- 3:
– double scalar
-
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.
- 4:
– double scalar
-
If
or
(i.e., if it is a final exit) then
df contains the degrees of freedom for the
statistic.
- 5:
– double scalar
-
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.
- 6:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Note: nag_nonpar_randtest_triplets (g08ec) may return useful information for one or more of the following detected errors or 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.
-
-
On entry, .
Constraint: , , or .
-
-
Constraint: if , , otherwise .
-
-
Constraint: .
-
-
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.
- W
-
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
.
-
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 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.
Further Comments
If the call to nag_nonpar_randtest_triplets (g08ec) 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 nag_nonpar_randtest_triplets (g08ec) are ignored.
The time taken by the function increases with the number of observations , and also depends to some extent whether the call to nag_nonpar_randtest_triplets (g08ec) is an only, first, intermediate or last call.
Example
The following program performs the triplets test on pseudorandom numbers. nag_nonpar_randtest_triplets (g08ec) is called times with observations on each call. The triplets are tallied into a by by matrix.
Open in the MATLAB editor:
g08ec_example
function g08ec_example
fprintf('g08ec example results\n\n');
seed = [int64(324213)];
genid = int64(1);
subid = int64(1);
[state, ifail] = g05kf( ...
genid, subid, seed);
m = 2;
ncount = zeros(m, m, m, 'int64');
n = int64(100);
nsampl = 5;
cl = 'F';
for i=1:nsampl
[state, x, ifail] = g05sq( ...
n, 0, 1, state);
[ncount, ex, chi, df, prob, ifail] = ...
g08ec( ...
cl, x, ncount);
cl = 'I';
if i==nsampl-1
cl = 'L';
end
end
for k = 1:m
mtitle = sprintf('k = %2d',k);
[ifail] = x04ea('General', ' ', reshape(ncount(:,:,k),m,m), mtitle);
fprintf('\n');
end
fprintf('\nExpected value = %8.2f\n', ex);
fprintf('Chisq = %10.4f\n', chi);
fprintf('DF = %7.1f\n', df);
fprintf('Probability = %10.4f\n', prob);
g08ec example results
k = 1
1 2
1 22 25
2 18 17
k = 2
1 2
1 23 24
2 24 13
Expected value = 20.75
Chisq = 6.1446
DF = 7.0
Probability = 0.5230
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015