|
BetaDistribution Constructor (Int32, Int32)
|
Creates a new Beta distribution.
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public BetaDistribution(
[NonnegativeIntegerAttribute(0, 2147483646)] int successes,
[PositiveIntegerAttribute(1, 2147483647)] int trials
)
Public Sub New (
<NonnegativeIntegerAttribute(0, 2147483646)> successes As Integer,
<PositiveIntegerAttribute(1, 2147483647)> trials As Integer
)
Request Example
View SourceParameters
- successes
- Type: SystemInt32
The number of success r. Default is 0. - trials
- Type: SystemInt32
The number of trials n. Default is 1.
See Also