Constructs an ExponentialDistribution instance with the given rate parameter
lambda.
Namespace:
CenterSpace.NMath.StatsAssembly: NMathStats (in NMathStats.dll) Version: 3.4.0.0
Syntax
| C# |
|---|
public ExponentialDistribution( double lambda ) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ lambda As Double _ ) |
| Visual C++ |
|---|
public: ExponentialDistribution( double lambda ) |
Parameters
- lambda
- Type: System..::.Double
Rate parameter. Must be positive.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the rate parameter, lambda is less than or equal to zero. |