pub struct CumulativeDistributionFunction {
pub x: f64,
pub lambda: f64,
}
Expand description
Cumulative Distribution Function (CDF)
§Links
https://en.wikipedia.org/wiki/Cumulative_distribution_function
Fields§
§x: f64
§lambda: f64
Implementations§
Trait Implementations§
Source§impl Clone for CumulativeDistributionFunction
impl Clone for CumulativeDistributionFunction
Source§fn clone(&self) -> CumulativeDistributionFunction
fn clone(&self) -> CumulativeDistributionFunction
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl PartialEq for CumulativeDistributionFunction
impl PartialEq for CumulativeDistributionFunction
Source§fn eq(&self, other: &CumulativeDistributionFunction) -> bool
fn eq(&self, other: &CumulativeDistributionFunction) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CumulativeDistributionFunction
Auto Trait Implementations§
impl Freeze for CumulativeDistributionFunction
impl RefUnwindSafe for CumulativeDistributionFunction
impl Send for CumulativeDistributionFunction
impl Sync for CumulativeDistributionFunction
impl Unpin for CumulativeDistributionFunction
impl UnwindSafe for CumulativeDistributionFunction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more