Click or drag to resize

RandGenJohnson(Double, Double, Double, Double, JohnsonTransformationType, Int32) Constructor

Constructs a random number generator using a seeded RandGenMTwist as the underlying uniform random number generator. The generated deviates will follow a Johnson distribution with the specified parameters and transformation type.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public RandGenJohnson(
	double gamma,
	double delta,
	double xi,
	double lambda,
	JohnsonTransformationType type,
	int seed
)

Parameters

gamma  Double
The gamma parameter of the Johnson distribution.
delta  Double
The delta parameter of the Johnson distribution.
xi  Double
The xi parameter of the Johnson distribution.
lambda  Double
The lambda parameter of the Johnson distribution.
type  JohnsonTransformationType
The transformation type of the Johnson distribution.
seed  Int32
Random number seed.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if passed a zero delta parameter.
See Also