Click or drag to resize
Accord.NET (logo)

GeneralizedBetaDistributionStandard Method

Constructs a standard Beta distribution defined in the interval (0, 1) based on the number of successed and trials for an experiment.

Namespace:  Accord.Statistics.Distributions.Univariate
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public static GeneralizedBetaDistribution Standard(
	int successes,
	int trials
)
Request Example View Source

Parameters

successes
Type: SystemInt32
The number of success r. Default is 0.
trials
Type: SystemInt32
The number of trials n. Default is 1.

Return Value

Type: GeneralizedBetaDistribution
A standard Beta distribution initialized using the given parameters.
See Also