rndLCp#
Purpose#
Computes Poisson pseudo-random numbers.
Note
This function is deprecated–use rndPoisson()
–but remains for backward compatibility.
Format#
- { x, newstate } = rndLCp(r, c, lambda, state)#
- Parameters:
r (scalar) – row dimension.
c (scalar) – column dimension.
lambda (scalar) – mean parameter.
state (scalar or vector) –
scalar case
3x1 vector case
[1]
the starting seed, uses the system clock if -1
[2]
the multiplicative constant
[3]
the additive constant
4x1 vector case
state = the state vector returned from a previous call to one of the
rndLC
random number generators.
- Returns:
x (RxC matrix) – Poisson distributed random numbers.
newstate (4x1 vector) –
[1]
the updated seed
[2]
the multiplicative constant
[3]
the additive constant
[4]
the original initialization seed
Technical Notes#
This function uses a linear congruential method, discussed in Kennedy, W.J. Jr., and J.E. Gentle, Statistical Computing, Marcel Dekker, Inc. 1980, pp. 136-147. Each seed is generated from the preceding seed using the formula
where %
is the mod operator and where a is the multiplicative constant
and c is the additive constant.
Source#
randlc.src