PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_rand_int_general (g05td)
Purpose
nag_rand_int_general (g05td) generates a vector of pseudorandom integers from a discrete distribution with a given PDF (probability density function) or CDF (cumulative distribution function) .
Syntax
[
r,
state,
x,
ifail] = g05td(
mode,
n,
p,
ip1,
itype,
r,
state, 'np',
np)
[
r,
state,
x,
ifail] = nag_rand_int_general(
mode,
n,
p,
ip1,
itype,
r,
state, 'np',
np)
Description
nag_rand_int_general (g05td) generates a sequence of
integers
, from a discrete distribution defined by information supplied in
p. This may either be the PDF or CDF of the distribution. A reference vector is first set up to contain the CDF of the distribution in its higher elements, followed by an index.
Setting up the reference vector and subsequent generation of variates can each be performed by separate calls to nag_rand_int_general (g05td) or may be combined in a single call.
One of the initialization functions
nag_rand_init_repeat (g05kf) (for a repeatable sequence if computed sequentially) or
nag_rand_init_nonrepeat (g05kg) (for a non-repeatable sequence) must be called prior to the first call to
nag_rand_int_general (g05td).
References
Kendall M G and Stuart A (1969) The Advanced Theory of Statistics (Volume 1) (3rd Edition) Griffin
Knuth D E (1981) The Art of Computer Programming (Volume 2) (2nd Edition) Addison–Wesley
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
A code for selecting the operation to be performed by the function.
- Set up reference vector only.
- Generate variates using reference vector set up in a prior call to nag_rand_int_general (g05td).
- Set up reference vector and generate variates.
- Generate variates without using the reference vector.
Constraint:
, , or .
- 2:
– int64int32nag_int scalar
-
, the number of pseudorandom numbers to be generated.
Constraint:
.
- 3:
– double array
-
The PDF or CDF of the distribution.
Constraints:
- , for ;
- if , ;
- if , .
- 4:
– int64int32nag_int scalar
-
The value of the variate, a whole number, to which the probability in corresponds.
- 5:
– int64int32nag_int scalar
-
Indicates the type of information contained in
p.
- p contains a probability distribution function (PDF).
- p contains a cumulative distribution function (CDF).
Constraint:
or .
- 6:
– double array
-
lr, the dimension of the array, must satisfy the constraint
- if or , ;
- if , lr should remain unchanged from the previous call to nag_rand_int_general (g05td).
If , the reference vector from the previous call to nag_rand_int_general (g05td).
- 7:
– int64int32nag_int array
-
Note: the actual argument supplied
must be the array
state supplied to the initialization routines
nag_rand_init_repeat (g05kf) or
nag_rand_init_nonrepeat (g05kg).
Contains information on the selected base generator and its current state.
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
p.
The number of values supplied in
p defining the PDF or CDF of the discrete distribution.
Constraint:
.
Output Parameters
- 1:
– double array
-
The reference vector.
- 2:
– int64int32nag_int array
-
Contains updated information on the state of the generator.
- 3:
– int64int32nag_int array
-
Contains pseudorandom numbers from the specified discrete distribution.
- 4:
– 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:
-
-
Constraint: , or .
-
-
Constraint: .
-
-
Constraint: if , .
On entry, at least one element of the vector
p is less than
or greater than
.
On entry,
and the sum of the elements of
p do not equal one.
On entry,
and the values of
p are not all in stricly ascending order.
-
-
Constraint: .
-
-
Constraint: or .
-
-
On entry, some of the elements of the array
r have been corrupted or have not been initialized.
The value of
np or
ip1 is not the same as when
r was set up in a previous call.
-
-
On entry, lr is too small when or .
-
-
On entry,
state vector has been corrupted or not initialized.
-
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
Not applicable.
Further Comments
None.
Example
This example prints
pseudorandom variates from a discrete distribution whose PDF,
, is defined as follows:
The reference vector is set up and and the variates are generated by a single call to
nag_rand_int_general (g05td), after initialization by
nag_rand_init_repeat (g05kf).
Open in the MATLAB editor:
g05td_example
function g05td_example
fprintf('g05td example results\n\n');
seed = [int64(1762543)];
genid = int64(1);
subid = int64(1);
[state, ifail] = g05kf( ...
genid, subid, seed);
n = int64(20);
p = [0.01; 0.02; 0.04; 0.08; 0.2; 0.3;
0.2; 0.08; 0.04; 0.02; 0.01];
ip1 = int64(-5);
itype = int64(1);
mode = int64(2);
r = zeros(60, 1);
[r, state, x, ifail] = g05td( ...
mode, n, p, ip1, itype, r, state);
disp('Variates');
disp(double(x));
g05td example results
Variates
0
-2
1
1
-2
0
0
1
0
1
-3
-1
0
-3
0
-1
-1
5
2
0
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015