DiscreteUniformDistribution Constructor |
Instantiates a new discrete uniform distribution with the given endpoints.
Namespace:
Meta.Numerics.Statistics.Distributions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public DiscreteUniformDistribution(
int a,
int b
)
Public Sub New (
a As Integer,
b As Integer
)
public:
DiscreteUniformDistribution(
int a,
int b
)
new :
a : int *
b : int -> DiscreteUniformDistribution
Parameters
- a
- Type: SystemInt32
One end-point. - b
- Type: SystemInt32
The other end-point.
See Also