ArcsineDistribution Constructor

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

ArcsineDistribution

Constructs a new ArcsineDistribution.
C#
public ArcsineDistribution()

ArcsineDistribution(Double, Double)

Constructs a new ArcsineDistribution.
C#
public ArcsineDistribution(
	double lowerBound,
	double upperBound
)

Parameters

lowerBound  Double
The lower bound of the interval on which the Beta distribution is defined.
upperBound  Double
The upper bound of the interval on which the Beta distribution is defined.

Exceptions

ArgumentException

upperBound is less than lowerBound.

ArgumentOutOfRangeException

lowerBound is infinite or NaN.

-or-

upperBound is infinite or NaN.

See Also