Click or drag to resize

RandGenJohnson(RandomNumberGeneratorUniformRandomNumber) Constructor

Constructs a random number generator using the given delegate as the underlying uniform random number generator. The generated deviates will follow a Johnson distribution with default shape and location parameters and transformation type.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public RandGenJohnson(
	RandomNumberGeneratorUniformRandomNumber rand
)

Parameters

rand  RandomNumberGeneratorUniformRandomNumber
A delegate method that returns a uniform random deviate between 0 and 1.
Remarks
The default parameter values are: gamma = 0.0, delta = 1.0, xi = 0.0, lambda = 1.0. The default transformation type is the identity transformation (SN).
See Also