pub struct Uniform { /* private fields */ }
Expand description

A continuous uniform distribution.

Implementations§

Create a uniform distribution on interval [a, b].

It should hold that a < b.

Examples found in repository?
src/distribution/uniform.rs (line 40)
39
40
41
    fn default() -> Self {
        Uniform::new(0.0, 1.0)
    }

Return the left endpoint of the support.

Return the right endpoint of the support.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Compute the probability density function.
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
The type of outcomes.
Compute the cumulative distribution function.
Compute the differential entropy. Read more
Compute the inverse of the cumulative distribution function.
Compute the excess kurtosis.
Compute the expected value.
Compute the median.
Draw a sample.
Compute the skewness.
Compute the variance.
Compute the standard deviation.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.