Click or drag to resize

FloatRandomBetaDistribution(Single, Single, Single, Single, FloatRandomBetaDistributionGenerationMethod) Constructor

Constructs a random number generator for a beta distribution using the specified distribution parameters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatRandomBetaDistribution(
	float p,
	float q,
	float displacement,
	float scale,
	FloatRandomBetaDistributionGenerationMethod method
)

Parameters

p  Single
The first shape parameter.
q  Single
The second shape parameter.
displacement  Single
Displacement.
scale  Single
Scale factor.
method  FloatRandomBetaDistributionGenerationMethod
The generation method to use.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if either shape parameter or the scale factor is not greater than 0.
See Also