[][src]Struct mathru::statistics::distrib::Exponential

pub struct Exponential<T> { /* fields omitted */ }

Exponential distribution

Fore more information: https://en.wikipedia.org/wiki/Exponential_distribution

Implementations

impl<T> Exponential<T> where
    T: Real
[src]

pub fn new(lambda: T) -> Exponential<T>[src]

Creates a probability distribution

Arguments

  • lambda > 0.0

Panics

if lambda <= 0.0

Example

use mathru::statistics::distrib::Exponential;

let distrib: Exponential<f64> = Exponential::new(0.3);

pub fn from_data<'a>(data: &'a Vec<T>) -> Self[src]

impl<T> Exponential<T> where
    T: Real
[src]

pub fn random(&self) -> T[src]

Trait Implementations

impl<T> Continuous<T> for Exponential<T> where
    T: Real
[src]

fn pdf(&self, x: T) -> T[src]

Probability density function

Arguments

  • x Random variable x ∈ &#x2115 | x > 0.0

Example

use mathru::statistics::distrib::{Continuous, Exponential};

let distrib: Exponential<f64> = Exponential::new(0.3);
let x: f64 = 5.0;
let p: f64 = distrib.pdf(x);

fn cdf(&self, x: T) -> T[src]

Cumulative distribution function

Arguments

  • x Random variable

Example

use mathru::statistics::distrib::{Continuous, Exponential};

let distrib: Exponential<f64> = Exponential::new(0.3);
let x: f64 = 0.4;
let p: f64 = distrib.cdf(x);

fn quantile(&self, p: T) -> T[src]

Quantile function of inverse cdf

fn mean(&self) -> T[src]

Expected value

Example

use mathru::statistics::distrib::{Continuous, Exponential};

let distrib: Exponential<f64> = Exponential::new(0.2);
let mean: f64 = distrib.mean();

fn variance(&self) -> T[src]

Variance

Example

use mathru::statistics::distrib::{Continuous, Exponential};

let distrib: Exponential<f64> = Exponential::new(0.2);
let var: f64 = distrib.variance();

fn skewness(&self) -> T[src]

fn median(&self) -> T[src]

fn entropy(&self) -> T[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Exponential<T> where
    T: RefUnwindSafe

impl<T> Send for Exponential<T> where
    T: Send

impl<T> Sync for Exponential<T> where
    T: Sync

impl<T> Unpin for Exponential<T> where
    T: Unpin

impl<T> UnwindSafe for Exponential<T> where
    T: UnwindSafe

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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,