pub struct Uniform { /* fields omitted */ }
Implements the Continuous
Uniform
distribution
use statrs::distribution::{Uniform, Continuous};
use statrs::statistics::Mean;
let n = Uniform::new(0.0, 1.0).unwrap();
assert_eq!(n.mean(), 0.5);
assert_eq!(n.pdf(0.5), 1.0);
Constructs a new uniform distribution with a min of min
and a max
of max
Returns an error if min
or max
are NaN
use statrs::distribution::Uniform;
use std::f64;
let mut result = Uniform::new(0.0, 1.0);
assert!(result.is_ok());
result = Uniform::new(f64::NAN, f64::NAN);
assert!(result.is_err());
Calculates the probability density function for the continuous uniform
distribution at x
Returns 0.0
if x
is not in [min, max]
Calculates the log probability density function for the continuous
uniform
distribution at x
Returns f64::NEG_INFINITY
if x
is not in [min, max]
Formats the value using the given formatter. Read more
Generate a random value of T
, using rng
as the source of randomness.
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
Returns the entropy for the continuous uniform distribution
Returns the maximum value in the domain of a given distribution
representable by a double-precision float. May panic depending on
the implementor. Read more
Returns the mean for the continuous uniform distribution
Returns the median for the continuous uniform distribution
Returns the minimum value in the domain of a given distribution
representable by a double-precision float. May panic depending on
the implementor. Read more
Returns the mode for the continuous uniform distribution
Since every element has an equal probability, mode simply
returns the middle element
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Returns the skewness for the continuous uniform distribution
Calculates the cumulative distribution function for the uniform
distribution
at x
Returns the variance for the continuous uniform distribution
Returns the standard deviation for the continuous uniform distribution
impl<T> Any for T where
T: 'static + ?Sized,
[src]
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
[src]
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.