ndhistogram

Struct VecHistogram

Source
pub struct VecHistogram<A, V> { /* private fields */ }
Expand description

A Histogram that stores its values in a Vec.

See crate::ndhistogram for examples of its use.

Implementations§

Source§

impl<A: Axis, V: Default + Clone> VecHistogram<A, V>

Source

pub fn new(axes: A) -> Self

Factory method for VecHistogram. It is recommended to use the ndhistogram macro instead.

Trait Implementations§

Source§

impl<A: Axis + PartialEq + Clone, V> Add<&V> for &VecHistogram<A, V>
where for<'a> &'a V: Add<Output = V>,

Source§

type Output = VecHistogram<A, V>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &V) -> Self::Output

Performs the + operation. Read more
Source§

impl<A: Axis + PartialEq + Clone, V> Add<&VecHistogram<A, V>> for &VecHistogram<A, V>
where for<'a> &'a V: Add<Output = V>,

Source§

fn add(self, rhs: &VecHistogram<A, V>) -> Self::Output

Combine the right-hand histogram with the left-hand histogram, returning a copy, and leaving the original histograms intact.

If the input histograms have incompatible axes, this operation will return a crate::error::BinaryOperationError.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
let combined_hist = (&hist1 + &hist2).expect("Axes are compatible");
assert_eq!(combined_hist.value(&0.0).unwrap(), &3.0);
Source§

type Output = Result<VecHistogram<A, V>, BinaryOperationError>

The resulting type after applying the + operator.
Source§

impl<A: Axis + PartialEq, V> Add<&VecHistogram<A, V>> for VecHistogram<A, V>
where for<'a> V: AddAssign<&'a V>,

Source§

fn add(self, rhs: &VecHistogram<A, V>) -> Self::Output

Combine the right-hand histogram with the left-hand histogram, consuming the left-hand histogram and returning a new value. As this avoids making copies of the histograms, this is the recommended method to merge histograms.

If the input histograms have incompatible axes, this operation will return a crate::error::BinaryOperationError.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
let combined_hist = (hist1 + &hist2).expect("Axes are compatible");
assert_eq!(combined_hist.value(&0.0).unwrap(), &3.0);
Source§

type Output = Result<VecHistogram<A, V>, BinaryOperationError>

The resulting type after applying the + operator.
Source§

impl<A: Axis + PartialEq, V> AddAssign<&VecHistogram<A, V>> for VecHistogram<A, V>
where for<'a> V: AddAssign<&'a V>,

Source§

fn add_assign(&mut self, rhs: &VecHistogram<A, V>)

Combine the right-hand histogram with the left-hand histogram, mutating the left-hand histogram.

§Panics

Panics if the histograms have incompatible axes. To handle this failure mode at runtime, use the non-assign version of this operation, which returns an Result.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
hist1 += &hist2;
assert_eq!(hist1.value(&0.0).unwrap(), &3.0);
Source§

impl<A: Clone, V: Clone> Clone for VecHistogram<A, V>

Source§

fn clone(&self) -> VecHistogram<A, V>

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<A: Debug, V: Debug> Debug for VecHistogram<A, V>

Source§

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

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

impl<A: Default, V: Default> Default for VecHistogram<A, V>

Source§

fn default() -> VecHistogram<A, V>

Returns the “default value” for a type. Read more
Source§

impl<A: Axis, V> Display for VecHistogram<A, V>
where V: Clone + Into<f64>, A::BinInterval: Display,

Source§

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

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

impl<A: Axis + PartialEq + Clone, V> Div<&V> for &VecHistogram<A, V>
where for<'a> &'a V: Div<Output = V>,

Source§

type Output = VecHistogram<A, V>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &V) -> Self::Output

Performs the / operation. Read more
Source§

impl<A: Axis + PartialEq + Clone, V> Div<&VecHistogram<A, V>> for &VecHistogram<A, V>
where for<'a> &'a V: Div<Output = V>,

Source§

fn div(self, rhs: &VecHistogram<A, V>) -> Self::Output

Combine the right-hand histogram with the left-hand histogram, returning a copy, and leaving the original histograms intact.

If the input histograms have incompatible axes, this operation will return a crate::error::BinaryOperationError.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
let combined_hist = (&hist1 / &hist2).expect("Axes are compatible");
assert_eq!(combined_hist.value(&0.0).unwrap(), &2.0);
Source§

type Output = Result<VecHistogram<A, V>, BinaryOperationError>

The resulting type after applying the / operator.
Source§

impl<A: Axis + PartialEq, V> Div<&VecHistogram<A, V>> for VecHistogram<A, V>
where for<'a> V: DivAssign<&'a V>,

Source§

fn div(self, rhs: &VecHistogram<A, V>) -> Self::Output

Combine the right-hand histogram with the left-hand histogram, consuming the left-hand histogram and returning a new value. As this avoids making copies of the histograms, this is the recommended method to merge histograms.

If the input histograms have incompatible axes, this operation will return a crate::error::BinaryOperationError.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
let combined_hist = (hist1 / &hist2).expect("Axes are compatible");
assert_eq!(combined_hist.value(&0.0).unwrap(), &2.0);
Source§

type Output = Result<VecHistogram<A, V>, BinaryOperationError>

The resulting type after applying the / operator.
Source§

impl<A: Axis + PartialEq, V> DivAssign<&VecHistogram<A, V>> for VecHistogram<A, V>
where for<'a> V: DivAssign<&'a V>,

Source§

fn div_assign(&mut self, rhs: &VecHistogram<A, V>)

Combine the right-hand histogram with the left-hand histogram, mutating the left-hand histogram.

§Panics

Panics if the histograms have incompatible axes. To handle this failure mode at runtime, use the non-assign version of this operation, which returns an Result.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
hist1 /= &hist2;
assert_eq!(hist1.value(&0.0).unwrap(), &2.0);
Source§

impl<A: Hash, V: Hash> Hash for VecHistogram<A, V>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<A: Axis, V> Histogram<A, V> for VecHistogram<A, V>

Source§

fn value(&self, coordinate: &A::Coordinate) -> Option<&V>

Read a bin value given a coordinate. Returns an Option as the given coordinate may not be mapped to a bin.
Source§

fn axes(&self) -> &A

The histogram Axes that map coordinates to bin numbers.
Source§

fn value_at_index(&self, index: usize) -> Option<&V>

Read a bin value given an index. Return an Option as the given index may not be valid for this histogram.
Source§

fn values<'a>(&'a self) -> Box<dyn Iterator<Item = &'a V> + 'a>

Iterator over bin values.
Source§

fn iter<'a>( &'a self, ) -> Box<dyn Iterator<Item = Item<A::BinInterval, &'a V>> + 'a>

Iterator over bin indices, bin interval and bin values.
Source§

fn value_at_index_mut(&mut self, index: usize) -> Option<&mut V>

Mutable access to a bin value at a given index.
Source§

fn values_mut(&mut self) -> Box<dyn Iterator<Item = &'_ mut V> + '_>

Mutable iterator over bin values.
Source§

fn iter_mut( &mut self, ) -> Box<dyn Iterator<Item = Item<<A as Axis>::BinInterval, &'_ mut V>> + '_>

Mutable iterator over bin indices, bin interval and bin values.
Source§

fn value_mut(&mut self, coordinate: &A::Coordinate) -> Option<&mut V>

Mutable access to a bin value at a given coordinate.
Source§

fn fill(&mut self, coordinate: &A::Coordinate)
where V: Fill,

Fill the histogram bin value at coordinate with unit weight. If the Axes do not cover that coordinate, do nothing. See Fill.
Source§

fn fill_with<D>(&mut self, coordinate: &A::Coordinate, data: D)
where V: FillWith<D>, Self: Sized,

Fill the histogram bin value at coordinate with some data. If the Axes do not cover that coordinate, do nothing. See FillWith.
Source§

fn fill_with_weighted<D, W>( &mut self, coordinate: &A::Coordinate, data: D, weight: W, )
where V: FillWithWeighted<D, W>, Self: Sized,

Fill the histogram bin value at coordinate with some data. If the Axes do not cover that coordinate, do nothing. See FillWithWeighted.
Source§

impl<'a, A: Axis, V> IntoIterator for &'a VecHistogram<A, V>

Source§

type Item = Item<<A as Axis>::BinInterval, &'a V>

The type of the elements being iterated over.
Source§

type IntoIter = Box<dyn Iterator<Item = Item<<A as Axis>::BinInterval, &'a V>> + 'a>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<'a, A: Axis, V: 'a> IntoIterator for &'a mut VecHistogram<A, V>

Source§

type Item = Item<<A as Axis>::BinInterval, &'a mut V>

The type of the elements being iterated over.
Source§

type IntoIter = Box<dyn Iterator<Item = Item<<A as Axis>::BinInterval, &'a mut V>> + 'a>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<A: Axis + PartialEq + Clone, V> Mul<&V> for &VecHistogram<A, V>
where for<'a> &'a V: Mul<Output = V>,

Source§

type Output = VecHistogram<A, V>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &V) -> Self::Output

Performs the * operation. Read more
Source§

impl<A: Axis + PartialEq + Clone, V> Mul<&VecHistogram<A, V>> for &VecHistogram<A, V>
where for<'a> &'a V: Mul<Output = V>,

Source§

fn mul(self, rhs: &VecHistogram<A, V>) -> Self::Output

Combine the right-hand histogram with the left-hand histogram, returning a copy, and leaving the original histograms intact.

If the input histograms have incompatible axes, this operation will return a crate::error::BinaryOperationError.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
let combined_hist = (&hist1 * &hist2).expect("Axes are compatible");
assert_eq!(combined_hist.value(&0.0).unwrap(), &2.0);
Source§

type Output = Result<VecHistogram<A, V>, BinaryOperationError>

The resulting type after applying the * operator.
Source§

impl<A: Axis + PartialEq, V> Mul<&VecHistogram<A, V>> for VecHistogram<A, V>
where for<'a> V: MulAssign<&'a V>,

Source§

fn mul(self, rhs: &VecHistogram<A, V>) -> Self::Output

Combine the right-hand histogram with the left-hand histogram, consuming the left-hand histogram and returning a new value. As this avoids making copies of the histograms, this is the recommended method to merge histograms.

If the input histograms have incompatible axes, this operation will return a crate::error::BinaryOperationError.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
let combined_hist = (hist1 * &hist2).expect("Axes are compatible");
assert_eq!(combined_hist.value(&0.0).unwrap(), &2.0);
Source§

type Output = Result<VecHistogram<A, V>, BinaryOperationError>

The resulting type after applying the * operator.
Source§

impl<A: Axis + PartialEq, V> MulAssign<&VecHistogram<A, V>> for VecHistogram<A, V>
where for<'a> V: MulAssign<&'a V>,

Source§

fn mul_assign(&mut self, rhs: &VecHistogram<A, V>)

Combine the right-hand histogram with the left-hand histogram, mutating the left-hand histogram.

§Panics

Panics if the histograms have incompatible axes. To handle this failure mode at runtime, use the non-assign version of this operation, which returns an Result.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
hist1 *= &hist2;
assert_eq!(hist1.value(&0.0).unwrap(), &2.0);
Source§

impl<A: Ord, V: Ord> Ord for VecHistogram<A, V>

Source§

fn cmp(&self, other: &VecHistogram<A, V>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<A: PartialEq, V: PartialEq> PartialEq for VecHistogram<A, V>

Source§

fn eq(&self, other: &VecHistogram<A, V>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A: PartialOrd, V: PartialOrd> PartialOrd for VecHistogram<A, V>

Source§

fn partial_cmp(&self, other: &VecHistogram<A, V>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<A: Axis + PartialEq + Clone, V> Sub<&V> for &VecHistogram<A, V>
where for<'a> &'a V: Sub<Output = V>,

Source§

type Output = VecHistogram<A, V>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &V) -> Self::Output

Performs the - operation. Read more
Source§

impl<A: Axis + PartialEq + Clone, V> Sub<&VecHistogram<A, V>> for &VecHistogram<A, V>
where for<'a> &'a V: Sub<Output = V>,

Source§

fn sub(self, rhs: &VecHistogram<A, V>) -> Self::Output

Combine the right-hand histogram with the left-hand histogram, returning a copy, and leaving the original histograms intact.

If the input histograms have incompatible axes, this operation will return a crate::error::BinaryOperationError.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
let combined_hist = (&hist1 - &hist2).expect("Axes are compatible");
assert_eq!(combined_hist.value(&0.0).unwrap(), &1.0);
Source§

type Output = Result<VecHistogram<A, V>, BinaryOperationError>

The resulting type after applying the - operator.
Source§

impl<A: Axis + PartialEq, V> Sub<&VecHistogram<A, V>> for VecHistogram<A, V>
where for<'a> V: SubAssign<&'a V>,

Source§

fn sub(self, rhs: &VecHistogram<A, V>) -> Self::Output

Combine the right-hand histogram with the left-hand histogram, consuming the left-hand histogram and returning a new value. As this avoids making copies of the histograms, this is the recommended method to merge histograms.

If the input histograms have incompatible axes, this operation will return a crate::error::BinaryOperationError.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
let combined_hist = (hist1 - &hist2).expect("Axes are compatible");
assert_eq!(combined_hist.value(&0.0).unwrap(), &1.0);
Source§

type Output = Result<VecHistogram<A, V>, BinaryOperationError>

The resulting type after applying the - operator.
Source§

impl<A: Axis + PartialEq, V> SubAssign<&VecHistogram<A, V>> for VecHistogram<A, V>
where for<'a> V: SubAssign<&'a V>,

Source§

fn sub_assign(&mut self, rhs: &VecHistogram<A, V>)

Combine the right-hand histogram with the left-hand histogram, mutating the left-hand histogram.

§Panics

Panics if the histograms have incompatible axes. To handle this failure mode at runtime, use the non-assign version of this operation, which returns an Result.

§Examples
use ndhistogram::{Histogram, ndhistogram, axis::Uniform};
let mut hist1 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
let mut hist2 = ndhistogram!(Uniform::<f64>::new(10, -5.0, 5.0)?);
hist1.fill_with(&0.0, 2.0);
hist2.fill(&0.0);
hist1 -= &hist2;
assert_eq!(hist1.value(&0.0).unwrap(), &1.0);
Source§

impl<A: Eq, V: Eq> Eq for VecHistogram<A, V>

Source§

impl<A, V> StructuralPartialEq for VecHistogram<A, V>

Auto Trait Implementations§

§

impl<A, V> Freeze for VecHistogram<A, V>
where A: Freeze,

§

impl<A, V> RefUnwindSafe for VecHistogram<A, V>

§

impl<A, V> Send for VecHistogram<A, V>
where A: Send, V: Send,

§

impl<A, V> Sync for VecHistogram<A, V>
where A: Sync, V: Sync,

§

impl<A, V> Unpin for VecHistogram<A, V>
where A: Unpin, V: Unpin,

§

impl<A, V> UnwindSafe for VecHistogram<A, V>
where A: UnwindSafe, V: 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment from self to dst. Read more
Source§

impl<D> FillWith<&D> for D
where D: for<'a> AddAssign<&'a D>,

Source§

fn fill_with(&mut self, data: &D)

Fill this value with some data. For a simple number type means adding the weight.
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.

Source§

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

Source§

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

Source§

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

Source§

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.