Struct math::histogram::Histogram

source ·
pub struct Histogram<T>{ /* private fields */ }
Expand description

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

Implementations§

source§

impl<T> Histogram<T>

source

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

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));
source

pub fn num_intervals(&self) -> usize

source

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

source

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

source

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

source

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

source

pub fn get_num_less_than_min(&self) -> usize

source

pub fn get_num_larger_than_max(&self) -> usize

source

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

source

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

source

pub fn min_boundary(&self) -> T

source

pub fn max_boundary(&self) -> T

Trait Implementations§

source§

impl<T> Clone for Histogram<T>

source§

fn clone(&self) -> Histogram<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> Collecting<T> for Histogram<T>

source§

fn collect(&mut self, item: T)

source§

impl<T> Debug for Histogram<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Display for Histogram<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> PartialEq for Histogram<T>

source§

fn eq(&self, other: &Histogram<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, T> ToIterator<'a, HistogramIter<'a, T>, (T, T, usize)> for Histogram<T>

source§

fn to_iter(&'a self) -> HistogramIter<'a, T>

source§

impl<T> Eq for Histogram<T>

source§

impl<T> StructuralEq for Histogram<T>

source§

impl<T> StructuralPartialEq for Histogram<T>

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§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V