A uniform distribution of type
double.- Namespace
- RandN
.Distributions - Interfaces
- IDistribution
<double>
- IDistribution
- Base Types
- object
- ValueType
Syntax
public readonly struct UniformDouble : ValueType, IDistribution<double>Methods
| Name | Return Value | Summary |
|---|---|---|
| Create | UniformDouble | Creates a UniformDouble with an exclusive upper bound. Should not be used directly; instead, use New(double, double).static |
| CreateInclusive | UniformDouble | Creates a UniformDouble with an exclusive lower bound. Should not be used directly; instead, use New(double, double).static |
| Sample | double | Samples a value from rng, blocking until a suitable value is returned. |
| TrySample | bool | Attempts to sample a value from rng once, returning false if the value returned is not suitable. |