|
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
)
Public Sub New (
<PositiveAttribute(4.94065645841247E-324, 1.79769313486232E+308)><DefaultValueAttribute(1)> alpha As Double,
<PositiveAttribute(4.94065645841247E-324, 1.79769313486232E+308)><DefaultValueAttribute(1)> beta As Double,
<RealAttribute(-1.79769313486232E+308, 1.79769313486232E+308)><DefaultValueAttribute(0)> min As Double,
<RealAttribute(-1.79769313486232E+308, 1.79769313486232E+308)><DefaultValueAttribute(1)> max As Double
)
Request Example
View SourceParameters
- 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