Constructs a PoissonDistribution with the specified lambda, which is both the mean
and the variance of the distribution.
Namespace:
CenterSpace.NMath.StatsAssembly: 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
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if lambda is less than or equal to zero. |