Random.Poisson Method

Generates random integer N according to Poisson law.
public static int Poisson( 
double mean 
)
This language is not supported or no code example is available.
public:  
static int Poisson( 
double mean 
)
This language is not supported or no code example is available.
public static function Poisson( 
mean : double 
) : int;
This language is not supported or no code example is available.

Parameters

mean
double

Return Value

int
Remarks
 
Coded from Los Alamos report LA-5061-MS Prob(N) = exp(-mean)*mean^N/Factorial(N)  
Author: Rene Brun, root.cern.ch

In this article

Definition