TransformedBetaDistribution Constructor

Constructs a new TransformedBetaDistribution using the specified shape parameters.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
public TransformedBetaDistribution(
	double shape1,
	double shape2,
	double shape3,
	double scale
)

Parameters

shape1  Double
The first shape parameter of the distribution.
shape2  Double
The second shape parameter of the distribution.
shape3  Double
The third shape parameter of the distribution.
scale  Double
The scale parameter.

Remarks

Transformed beta distributions have three shape parameters and a scale parameter. The distribution defines a family of distributions, with special values for the parameters resulting in a variety of well-known distributions.

Exceptions

ArgumentOutOfRangeException

shape1 is less than or equal to zero.

-or-

shape2 is less than or equal to zero.

-or-

scale is less than or equal to zero.

See Also