[][src]Struct probability::prelude::Uniform

pub struct Uniform { /* fields omitted */ }

A continuous uniform distribution.

Methods

impl Uniform[src]

pub fn new(a: f64, b: f64) -> Self[src]

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

It should hold that a < b.

pub fn a(&self) -> f64[src]

Return the left endpoint of the support.

pub fn b(&self) -> f64[src]

Return the right endpoint of the support.

Trait Implementations

impl Continuous for Uniform[src]

impl Distribution for Uniform[src]

type Value = f64

The type of outcomes.

impl Entropy for Uniform[src]

impl Inverse for Uniform[src]

impl Kurtosis for Uniform[src]

impl Mean for Uniform[src]

impl Median for Uniform[src]

impl Sample for Uniform[src]

impl Skewness for Uniform[src]

impl Variance for Uniform[src]

fn deviation(&self) -> f64[src]

Compute the standard deviation.

impl Clone for Uniform[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for Uniform[src]

impl Default for Uniform[src]

impl Debug for Uniform[src]

Auto Trait Implementations

impl Send for Uniform

impl Sync for Uniform

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]