UniformDouble Struct
A uniform distribution of type double.
Namespace
RandN.Distributions
Interfaces
Base Types
  • object
  • ValueType
UniformDouble
ValueType
object
IDistribution<double>

Syntax

public readonly struct UniformDouble : ValueType, IDistribution<double>

Methods

NameReturn ValueSummary
Create(double, double)UniformDouble
Creates a UniformDouble with an exclusive upper bound. Should not be used directly; instead, use New(double, double).
static
CreateInclusive(double, double)UniformDouble
Creates a UniformDouble with an exclusive lower bound. Should not be used directly; instead, use New(double, double).
static
Sample<TRng>(TRng)double
Samples a value from rng, blocking until a suitable value is returned.
TrySample<TRng>(TRng, double)bool
Attempts to sample a value from rng once, returning false if the value returned is not suitable.