Click or drag to resize

GeometricDistribution Constructor

Constructs a GeometricDistribution instance with the given probability of success.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public GeometricDistribution(
	double p
)

Parameters

p  Double
The probability of success on each trial. Must be greater than zero and less than or equal to one.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if p is less than or equal to zero or p is greater than one.
See Also