[][src]Struct rv::dist::Geometric

pub struct Geometric { /* fields omitted */ }

Geometric distribution over x in {0, 1, 2, 3, ... }.

Example

use rv::prelude::*;

// Create Geometric(p=0.5)
let geom = Geometric::new(0.5).unwrap();

// Draw Samples
let mut rng = rand::thread_rng();
let xs: Vec<u32> = geom.sample(100, &mut rng);
assert_eq!(xs.len(), 100)

Methods

impl Geometric[src]

pub fn set_p(&mut self, val: f64) -> &mut Self[src]

impl Geometric[src]

pub fn new(p: f64) -> Result<Self, GeometricError>[src]

Create a new geometric distribution

pub fn new_unchecked(p: f64) -> Self[src]

Creates a new Geometric without checking whether the parameter is valid.

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

Get the p parameter

Trait Implementations

impl<X> Cdf<X> for Geometric where
    X: Unsigned + Integer + FromPrimitive + ToPrimitive + Saturating + Bounded
[src]

impl Clone for Geometric[src]

impl Debug for Geometric[src]

impl Default for Geometric[src]

impl<X> DiscreteDistr<X> for Geometric where
    X: Unsigned + Integer + FromPrimitive + ToPrimitive + Saturating + Bounded
[src]

impl Display for Geometric[src]

impl Entropy for Geometric[src]

impl<'_> From<&'_ Geometric> for String[src]

impl Kurtosis for Geometric[src]

impl Mean<f64> for Geometric[src]

impl PartialEq<Geometric> for Geometric[src]

impl PartialOrd<Geometric> for Geometric[src]

impl<X> Rv<X> for Geometric where
    X: Unsigned + Integer + FromPrimitive + ToPrimitive + Saturating + Bounded
[src]

impl Skewness for Geometric[src]

impl StructuralPartialEq for Geometric[src]

impl<X> Support<X> for Geometric where
    X: Unsigned + Integer
[src]

impl Variance<f64> for Geometric[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<Fx, X> Cdf<X> for Fx where
    Fx: Deref,
    <Fx as Deref>::Target: Cdf<X>, 
[src]

impl<Fx, X> DiscreteDistr<X> for Fx where
    Fx: Deref,
    <Fx as Deref>::Target: DiscreteDistr<X>, 
[src]

impl<Fx> Entropy for Fx where
    Fx: Deref,
    <Fx as Deref>::Target: Entropy
[src]

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

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

impl<Fx> Kurtosis for Fx where
    Fx: Deref,
    <Fx as Deref>::Target: Kurtosis
[src]

impl<Fx, X> Mean<X> for Fx where
    Fx: Deref,
    <Fx as Deref>::Target: Mean<X>, 
[src]

impl<Fx, X> Rv<X> for Fx where
    Fx: Deref,
    <Fx as Deref>::Target: Rv<X>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<Fx> Skewness for Fx where
    Fx: Deref,
    <Fx as Deref>::Target: Skewness
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<Fx, X> Support<X> for Fx where
    Fx: Deref,
    <Fx as Deref>::Target: Support<X>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<Fx, X> Variance<X> for Fx where
    Fx: Deref,
    <Fx as Deref>::Target: Variance<X>, 
[src]