|
UniformContinuousDistribution Constructor (Double, Double)
|
Creates a new uniform distribution defined in the interval [a;b].
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic UniformContinuousDistribution(
[RealAttribute(-1.79769313486232E+308, 1.79769313486232E+308)][DefaultValueAttribute(0)] double a,
[RealAttribute(-1.79769313486232E+308, 1.79769313486232E+308)][DefaultValueAttribute(1)] double b
)
Public Sub New (
<RealAttribute(-1.79769313486232E+308, 1.79769313486232E+308)><DefaultValueAttribute(0)> a As Double,
<RealAttribute(-1.79769313486232E+308, 1.79769313486232E+308)><DefaultValueAttribute(1)> b As Double
)
Request Example
View SourceParameters
- a
- Type: SystemDouble
The starting number a. - b
- Type: SystemDouble
The ending number b.
See Also