Constructs a PoissonDistribution with the specified lambda, which is both the mean and the variance of the distribution.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public PoissonDistribution(
	double lambda
)
Visual Basic (Declaration)
Public Sub New ( _
	lambda As Double _
)
Visual C++
public:
PoissonDistribution(
	double lambda
)

Parameters

lambda
Type: System..::.Double
The lambda parameter.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if lambda is less than or equal to zero.

See Also