Inverse Gaussian Distribution Constructor
Definition
Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Inverse | Constructs a new standard InverseGaussianDistribution (Wald distribution) with the specified scale parameter. |
Inverse | Constructs a new InverseGaussianDistribution or Wald distribution with the specified location and scale parameter. |
InverseGaussianDistribution(Double)
Constructs a new standard InverseGaussianDistribution (Wald distribution) with the specified
scale parameter.
public InverseGaussianDistribution(
double scale
)
Parameters
- scale Double
- The scale parameter. Must be strictly greater than zero.
Remarks
The location parameter is set to 1. A distribution with this value for the location parameter is also known as the Wald distribution.
Exceptions
Argument | scale is less than zero. |
InverseGaussianDistribution(Double, Double)
Constructs a new InverseGaussianDistribution
or Wald distribution with the specified location and scale parameter.
public InverseGaussianDistribution(
double location,
double scale
)
Parameters
Exceptions
Argument | location is less than or equal to zero. -or- scale is less than zero. |