pub struct RunningStatistics { /* private fields */ }Expand description
Online running statistics (Welford’s method).
Implementations§
Source§impl RunningStatistics
impl RunningStatistics
Sourcepub fn pop_variance(&self) -> f64
pub fn pop_variance(&self) -> f64
Population variance (n denominator).
Auto Trait Implementations§
impl Freeze for RunningStatistics
impl RefUnwindSafe for RunningStatistics
impl Send for RunningStatistics
impl Sync for RunningStatistics
impl Unpin for RunningStatistics
impl UnsafeUnpin for RunningStatistics
impl UnwindSafe for RunningStatistics
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