Struct freebj::running_stats::RunningStats[][src]

pub struct RunningStats { /* fields omitted */ }

Implementations

impl RunningStats[src]

pub fn push(&mut self, value: f64)[src]

Pushes and updates the running stats with a new value.

  • value - The new value to push

pub fn count(&self) -> usize[src]

Returns the number of values that where pushed.

pub fn min(&self) -> f64[src]

Returns the lowest value pushed, NaN if none were pushed.

pub fn max(&self) -> f64[src]

Returns the highest value pushed, NaN if none were pushed.

pub fn mean(&self) -> f64[src]

Returns the mean of all values pushed, NaN if none were pushed.

pub fn variance(&self) -> f64[src]

Returns the variance of all values pushed, NaN if none were pushed, 0.0 if only one was.

pub fn stddev(&self) -> f64[src]

Returns the standard deviation of all values pushed, NaN if none were pushed, 0.0 if only one was.

Trait Implementations

impl Add<RunningStats> for RunningStats[src]

type Output = RunningStats

The resulting type after applying the + operator.

impl AddAssign<RunningStats> for RunningStats[src]

impl Debug for RunningStats[src]

impl Default for RunningStats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,