Namespace:
Extreme.Statistics.Distributions
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public BetaDistribution(
double alpha,
double beta
)
Public Sub New (
alpha As Double,
beta As Double
)
public:
BetaDistribution(
double alpha,
double beta
)
new :
alpha : float *
beta : float -> BetaDistribution
Parameters
- alpha
- Type: SystemDouble
First shape parameter of the distribution. - beta
- Type: SystemDouble
Second shape parameter of the distribution.
Beta distributions have two shape parameters, usually called
α and β. The first determines the behavior at the lower bound of the definition interval.
The second determines the behavior at the upper bound of the definition interval.
This constructor creates a BetaDistribution that is defined over the interval
from zero to one. Another constructor allows you to specify the interval.
Reference