Click or drag to resize

RandGenWeibull(Double, Double, Int32) Constructor

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

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

Parameters

shape  Double
The shape parameter for the Weibull distribution. Must be positive.
scale  Double
The scale parameter for the Weibull distribution. Must be positive.
seed  Int32
Random number seed.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if either the shape or scale parameters are not positive.
See Also