pub trait Min<T> {
fn min(&self) -> T;
}
The Min
trait specifies than an object has a minimum value
Returns the minimum value in the domain of a given distribution
representable by a double-precision float. May panic depending on
the implementor.
use statrs::statistics::Min;
use statrs::distribution::Uniform;
let n = Uniform::new(0.0, 1.0).unwrap();
assert_eq!(0.0, n.min());
Loading content...
Returns the minimum value in the data
Returns f64::NAN
if data is empty or an entry is f64::NAN
use std::f64;
use statrs::statistics::Min;
let x: [f64; 0] = [];
assert!(x.min().is_nan());
let y = [0.0, f64::NAN, 3.0, -2.0];
assert!(y.min().is_nan());
let z = [0.0, 3.0, -2.0];
assert_eq!(z.min(), -2.0);
Loading content...
Returns the minimum value in the domain of the
beta distribution representable by a double precision
float
Returns the minimum value in the domain of the cauchy
distribution representable by a double precision float
Returns the minimum value in the domain of the chi distribution
representable by a double precision float
Returns the minimum value in the domain of the
chi-squared distribution representable by a double precision
float
Returns the minimum value in the domain of the
erlang distribution representable by a double precision
float
Returns the minimum value in the domain of the exponential
distribution representable by a double precision float
Returns the minimum value in the domain of the
fisher-snedecor distribution representable by a double precision
float
Returns the minimum value in the domain of the
gamma distribution representable by a double precision
float
Returns the minimum value in the domain of the
inverse gamma distribution representable by a double precision
float
Returns the minimum value in the domain of the log-normal
distribution representable by a double precision float
Returns the minimum value in the domain of the
normal distribution representable by a double precision float
Returns the minimum value in the domain of the Pareto distribution
representable by a double precision float
where x_m
is the scale
Returns the minimum value in the domain of the student’s t-distribution
representable by a double precision float
Returns the minimum value in the domain of the
triangular distribution representable by a double precision float
The return value is the same min used to construct the distribution
Returns the minimum value in the domain of the weibull
distribution representable by a double precision float
Returns the minimum value in the domain of the discrete uniform
distribution
This is the same value as the minimum passed into the constructor
Returns the minimum value in the domain of the
bernoulli distribution representable by a 64-
bit integer
Returns the minimum value in the domain of the
binomial distribution representable by a 64-bit
integer
Returns the minimum value in the domain of the
categorical distribution representable by a 64-bit
integer
Returns the minimum value in the domain of the
geometric distribution representable by a 64-bit
integer
Returns the minimum value in the domain of the
hypergeometric distribution representable by a 64-bit
integer
where N
is population, K
is successes, and n
is draws
Returns the minimum value in the domain of the poisson distribution
representable by a 64-bit integer
Loading content...