Click or drag to resize

RandGenWeibull(Double) Constructor

Constructs a random number generator using RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a Weibull distribution with the specified shape and default scale.

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

Parameters

shape  Double
The shape parameter for the Weibull distribution. Must be positive.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the shape parameter is not positive.
Remarks
The default scale is 1.0. This value may be altered using the static DEFAULT_SCALE property.
See Also