[][src]Struct math::histogram::Histogram

pub struct Histogram<T> where
    T: PartialOrd + NumAssign + NumOps + FromPrimitive + ToPrimitive + Copy + Display
{ /* fields omitted */ }

The Histogram consists of num_intervals intervals between the min and the max value.

Implementations

impl<T> Histogram<T> where
    T: PartialOrd + NumAssign + NumOps + FromPrimitive + ToPrimitive + Copy + Display
[src]

pub fn new<'a>(
    elements: Option<&'a Vec<T>>,
    num_intervals: usize,
    min: T,
    max: T
) -> Result<Histogram<T>, String> where
    &'a T: Deref
[src]

Initializing with Known Boundaries

Creates a Histogram consisting of num_intervals intervals between the values min and max, and inserts the values from the vector of elements into the histogram. Values smaller than min will increment the counter num_less_than_min, while values larger than max will increment the counter num_larger_than_max

Example

use math::histogram::Histogram;

let histogram =
    Histogram::new(Some(&vec![2, -1, 3, 5, 8]), 5, 0, 10).unwrap();
assert_eq!(histogram.get_boundaries().len(), 6);
assert_eq!(histogram.get_num_less_than_min(), 1);
assert_eq!(histogram.get_num_larger_than_max(), 0);
assert_eq!(histogram.get_min_received(), Some(-1));
assert_eq!(histogram.get_max_received(), Some(8));

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

pub fn get_ratios(&self) -> Vec<f64>[src]

pub fn new_with_auto_range<'a>(
    elements: &'a Vec<T>,
    num_intervals: usize
) -> Result<Histogram<T>, String> where
    &'a T: Deref,
    T: Ord
[src]

pub fn get_boundaries(&self) -> &Vec<T>[src]

pub fn get_counters(&self) -> &Vec<usize>[src]

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

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

pub fn get_min_received(&self) -> Option<T>[src]

pub fn get_max_received(&self) -> Option<T>[src]

pub fn min_boundary(&self) -> T[src]

pub fn max_boundary(&self) -> T[src]

Trait Implementations

impl<T> Collecting<T> for Histogram<T> where
    T: PartialOrd + NumAssign + NumOps + FromPrimitive + ToPrimitive + Copy + Display
[src]

impl<T> Display for Histogram<T> where
    T: PartialOrd + NumAssign + NumOps + FromPrimitive + ToPrimitive + Copy + Display
[src]

impl<'a, T> ToIterator<'a, HistogramIter<'a, T>, (T, T, usize)> for Histogram<T> where
    T: PartialOrd + NumAssign + NumOps + FromPrimitive + ToPrimitive + Copy + Display
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Histogram<T> where
    T: RefUnwindSafe

impl<T> Send for Histogram<T> where
    T: Send

impl<T> Sync for Histogram<T> where
    T: Sync

impl<T> Unpin for Histogram<T> where
    T: Unpin

impl<T> UnwindSafe for Histogram<T> where
    T: UnwindSafe

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> ToString for T where
    T: Display + ?Sized
[src]

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>,