 | IntRandomUniformDistribution Constructor (Int32, Int32, IntRandomUniformDistributionGenerationMethod) |
Constructs a random number generator with the specified lower and upper bounds.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.3
Syntaxpublic IntRandomUniformDistribution(
int lower,
int upper,
IntRandomUniformDistributionGenerationMethod method
)
Public Sub New (
lower As Integer,
upper As Integer,
method As IntRandomUniformDistributionGenerationMethod
)
public:
IntRandomUniformDistribution(
int lower,
int upper,
IntRandomUniformDistributionGenerationMethod method
)
new :
lower : int *
upper : int *
method : IntRandomUniformDistributionGenerationMethod -> IntRandomUniformDistribution
Parameters
- lower
- Type: SystemInt32
The lower bound. - upper
- Type: SystemInt32
The upper bound. - method
- Type: CenterSpace.NMath.CoreIntRandomUniformDistributionGenerationMethod
Generation method. Fast or Accurate.
Remarks
Generates random numbers uniformly distributed over the interval [a, b), where a, b are the left
and right bounds of the interval respectively.
See Also