[][src]Struct rand_distr::Triangular

pub struct Triangular<N> { /* fields omitted */ }

The triangular distribution.

A continuous probability distribution parameterised by a range, and a mode (most likely value) within that range.

The probability density function is triangular. For a similar distribution with a smooth PDF, see the Pert distribution.

Example

use rand_distr::{Triangular, Distribution};

let d = Triangular::new(0., 5., 2.5).unwrap();
let v = d.sample(&mut rand::thread_rng());
println!("{} is from a triangular distribution", v);

Methods

impl<N: Float> Triangular<N> where
    Standard: Distribution<N>, 
[src]

pub fn new(min: N, max: N, mode: N) -> Result<Triangular<N>, TriangularError>[src]

Set up the Triangular distribution with defined min, max and mode.

Trait Implementations

impl<N: Clone> Clone for Triangular<N>[src]

impl<N: Copy> Copy for Triangular<N>[src]

impl<N: Debug> Debug for Triangular<N>[src]

impl<N: Float> Distribution<N> for Triangular<N> where
    Standard: Distribution<N>, 
[src]

Auto Trait Implementations

impl<N> Unpin for Triangular<N> where
    N: Unpin

impl<N> Sync for Triangular<N> where
    N: Sync

impl<N> Send for Triangular<N> where
    N: Send

impl<N> UnwindSafe for Triangular<N> where
    N: UnwindSafe

impl<N> RefUnwindSafe for Triangular<N> where
    N: RefUnwindSafe

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,