PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_rand_int_hypergeom (g05te)
Purpose
nag_rand_int_hypergeom (g05te) generates a vector of pseudorandom integers from the discrete hypergeometric distribution of the number of specified items in a sample of size , taken from a population of size with specified items in it.
Syntax
Description
nag_rand_int_hypergeom (g05te) generates
integers
from a discrete hypergeometric distribution, where the probability of
is
The variates can be generated with or without using a search table and index. If a search table is used then it is stored with the index in a reference vector and subsequent calls to nag_rand_int_hypergeom (g05te) with the same parameter values can then use this reference vector to generate further variates. The reference array is generated by a recurrence relation if , otherwise Stirling's approximation is used.
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_hypergeom (g05te).
References
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_hypergeom (g05te).
- 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:
– int64int32nag_int scalar
-
, the sample size of the hypergeometric distribution.
Constraint:
.
- 4:
– int64int32nag_int scalar
-
, the population size of the hypergeometric distribution.
Constraint:
.
- 5:
– int64int32nag_int scalar
-
, the number of specified items of the hypergeometric distribution.
Constraint:
.
- 6:
– double array
-
lr, the dimension of the array, must satisfy the constraint
- if or , lr must not be too small, but the limit is too complicated to specify;
- if , lr must remain unchanged from the previous call to nag_rand_int_hypergeom (g05te).
If
, the reference vector from the previous call to
nag_rand_int_hypergeom (g05te).
If
,
r is not referenced.
- 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
None.
Output Parameters
- 1:
– double array
-
If , the reference vector.
- 2:
– int64int32nag_int array
-
Contains updated information on the state of the generator.
- 3:
– int64int32nag_int array
-
The pseudorandom numbers from the specified hypergeometric 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: .
-
-
Constraint: .
-
-
Constraint: .
-
-
On entry, some of the elements of the array
r have been corrupted or have not been initialized.
The value of
ns,
np or
m is not the same as when
r was set up in a previous call with
or
.
-
-
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
The example program prints
pseudorandom integers from a hypergeometric distribution with
,
and
, generated by a single call to
nag_rand_int_hypergeom (g05te), after initialization by
nag_rand_init_repeat (g05kf).
Open in the MATLAB editor:
g05te_example
function g05te_example
fprintf('g05te example results\n\n');
seed = [int64(1762543)];
genid = int64(1);
subid = int64(1);
[state, ifail] = g05kf( ...
genid, subid, seed);
n = int64(20);
ns = int64(500);
np = int64(1000);
m = int64(900);
mode = int64(2);
r = zeros(200, 1);
[r, state, x, ifail] = g05te( ...
mode, n, ns, np, m, r, state);
disp('Variates');
disp(double(x));
g05te example results
Variates
452
444
453
454
444
450
449
454
450
452
442
447
451
442
451
447
447
462
456
450
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015