Click or drag to resize

RandGenBeta(Double, RandomNumberGeneratorUniformRandomNumber) Constructor

Constructs a random number generator using the given delegate as the underlying uniform random number generator. Generated random numbers will follow a beta distribution with the specified alpha. The beta parameter defaults to 1.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public RandGenBeta(
	double alpha,
	RandomNumberGeneratorUniformRandomNumber rand
)

Parameters

alpha  Double
The alpha, or shape parameter, of the beta distribution.
rand  RandomNumberGeneratorUniformRandomNumber
A delegate method that returns a uniform random deviate between zero and one.
See Also