Struct probability::distribution::Logistic[][src]

pub struct Logistic { /* fields omitted */ }

A logistic distribution.

Methods

impl Logistic
[src]

Create a logistic distribution with location mu and scale s.

It should hold that s > 0.

Return the location parameter.

Return the scale parameter.

Trait Implementations

impl Clone for Logistic
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Logistic
[src]

impl Debug for Logistic
[src]

Formats the value using the given formatter. Read more

impl Default for Logistic
[src]

Returns the "default value" for a type. Read more

impl Continuous for Logistic
[src]

Compute the probability density function.

impl Distribution for Logistic
[src]

The type of outcomes.

Compute the cumulative distribution function.

impl Entropy for Logistic
[src]

Compute the differential entropy. Read more

impl Inverse for Logistic
[src]

Compute the inverse of the cumulative distribution function.

impl Kurtosis for Logistic
[src]

Compute the excess kurtosis.

impl Mean for Logistic
[src]

Compute the expected value.

impl Median for Logistic
[src]

Compute the median.

impl Modes for Logistic
[src]

Compute the modes.

impl Sample for Logistic
[src]

Draw a sample.

impl Skewness for Logistic
[src]

Compute the skewness.

impl Variance for Logistic
[src]

Compute the variance.

Compute the standard deviation.

Auto Trait Implementations

impl Send for Logistic

impl Sync for Logistic