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

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

Uniform distribution

Fore more information: https://en.wikipedia.org/wiki/Uniform_distribution_(continuous)

Implementations

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

pub fn new(a: T, b: T) -> Uniform<T>[src]

Uniform distribution

Arguments

-\inf < a < b < \inf

a: lower bound b: upper bound

a < b

Panic

a >= b

Trait Implementations

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

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

Probability density function

Arguments

x:

Example

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

let distrib: Uniform<f64> = Uniform::new(-0.1, 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

Example

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

let distrib: Uniform<f64> = Uniform::new(0.0, 0.5);
let x: f64 = 0.3;
let p: f64 = distrib.cdf(x);

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

Quantile function or inverse cdf

Arguments

  • q: quantile 0 <= q <= 1

Example

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

let distrib: Uniform<f64> = Uniform::new(0.0, 0.5);
let q: f64 = 0.3;
let x: f64 = distrib.quantile(q);

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

Mean

Example

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

let a: f64 = 0.2;
let b: f64 = 0.5;

let distrib: Uniform<f64> = Uniform::new(a, b);
let mean: f64 = distrib.mean();
assert_eq!((a + b) / 2.0, mean);

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

Variance

Example

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

let distrib: Uniform<f64> = Uniform::new(0.2, 0.5);
let var: f64 = distrib.variance();

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

Skewness

Example

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

let distrib: Uniform<f64> = Uniform::new(0.2, 0.5);
let skewness: f64 = distrib.skewness();
assert_eq!(0.0, skewness);

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

Median

Example

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

let a: f64 = 0.2;
let b: f64 = 0.5;

let distrib: Uniform<f64> = Uniform::new(a, b);
let median: f64 = distrib.median();
assert_eq!((a + b) / 2.0, median);

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

Entropy

Example

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

let a: f64 = 0.2;
let b: f64 = 0.5;

let distrib: Uniform<f64> = Uniform::new(a, b);
let entropy: f64 = distrib.entropy();
assert_eq!((b - a).ln(), entropy);

impl<T> Distribution<T> for Uniform<T> where
    T: Real
[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for Uniform<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>,