Click or drag to resize
Accord.NET (logo)

GeneralizedBetaDistribution Constructor (Double, Double, Double, Double)

Constructs a Beta distribution defined in the interval (a, b) with parameters α, β, a and b.

Namespace:  Accord.Statistics.Distributions.Univariate
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public GeneralizedBetaDistribution(
	[PositiveAttribute(4.94065645841247E-324, 1.79769313486232E+308)][DefaultValueAttribute(1)] double alpha,
	[PositiveAttribute(4.94065645841247E-324, 1.79769313486232E+308)][DefaultValueAttribute(1)] double beta,
	[RealAttribute(-1.79769313486232E+308, 1.79769313486232E+308)][DefaultValueAttribute(0)] double min,
	[RealAttribute(-1.79769313486232E+308, 1.79769313486232E+308)][DefaultValueAttribute(1)] double max
)
Request Example View Source

Parameters

alpha
Type: SystemDouble
The shape parameter α (alpha).
beta
Type: SystemDouble
The shape parameter β (beta).
min
Type: SystemDouble
The minimum possible value a.
max
Type: SystemDouble
The maximum possible value b.
See Also