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

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

Log-Normal distribution

Fore more information: https://en.wikipedia.org/wiki/Log-normal_distribution

Implementations

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

pub fn new(mu: T, sigma_squared: T) -> Self[src]

Creates a probability distribution

Arguments

  • mu:
  • sigma_squared:

Panics

if sigma_squared <= 0.0

Example

use mathru::statistics::distrib::LogNormal;

let distrib: LogNormal<f64> = LogNormal::new(0.3, 0.2);

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

It is assumed that data are normal distributed.

data.len() >= 2

Trait Implementations

impl<T: Clone> Clone for LogNormal<T>[src]

impl<T> Continuous<T> for LogNormal<T> where
    T: Real + Error + Gamma
[src]

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

Probability density function

Arguments

  • x: x ∈ &#x2115

Example

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

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

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

Cumulative distribution function

Arguments

  • x:

Example

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

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

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

Quantile: function of inverse cdf

Panics

if p <= 0.0 || p >= 1.0

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

Expected value

Example

use mathru::{
    self,
    statistics::distrib::{Continuous, LogNormal},
};

let distrib: LogNormal<f64> = LogNormal::new(0.0, 0.2);
let mean: f64 = distrib.mean();

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

Variance

Example

use mathru::{
    self,
    statistics::distrib::{Continuous, LogNormal},
};

let sigma_squared: f64 = 0.2;
let distrib: LogNormal<f64> = LogNormal::new(0.0, sigma_squared);
let var: f64 = distrib.variance();
assert_eq!((sigma_squared.exp() - 1.0) * sigma_squared.exp(),  var )

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

Median

Example

use mathru::{
    self,
    statistics::distrib::{Continuous, LogNormal},
};

let mu: f64 = 0.0;

let distrib: LogNormal<f64> = LogNormal::new(mu, 0.2);
let median: f64 = distrib.median();
assert_eq!(median, 1.0);

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

Skewness

Example

use mathru::{
    self,
    statistics::distrib::{Continuous, LogNormal},
};
let mu: f64 = 1.0;
let sigma_squared: f64 = 0.5;
let distrib: LogNormal<f64> = LogNormal::new(mu, sigma_squared);

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

Entropy

Example

use mathru::{
    self,
    statistics::distrib::{Continuous, LogNormal},
};

let mu: f64 = 1.0;
let sigma_squared: f64 = 0.5;
let distrib: LogNormal<f64> = LogNormal::new(mu, sigma_squared);

impl<T: Copy> Copy for LogNormal<T>[src]

impl<T: Debug> Debug for LogNormal<T>[src]

impl<'de, T> Deserialize<'de> for LogNormal<T> where
    T: Deserialize<'de>, 
[src]

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

impl<T> Serialize for LogNormal<T> where
    T: Serialize
[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for LogNormal<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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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>,