Uniform.Double Struct
A uniform distribution of type System.Double.
Namespace
RandN.Distributions
Containing Type
Uniform
Interfaces
Base Types
  • object
  • ValueType

Uniform.Double

ValueType

object

IDistribution<double>

Syntax

public readonly struct Uniform.Double : ValueType, IDistribution<double>

Methods

NameReturn ValueSummary
Create(double, double)Uniform.Double
Creates a Uniform.Double with an exclusive upper bound. Should not be used directly; instead, use New(double, double).
static
CreateInclusive(double, double)Uniform.Double
Creates a Uniform.Double 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.