pub struct HistogramFloat<T> { /* private fields */ }
Expand description

Generic Histogram struct

Implementations§

source§

impl<T> HistogramFloat<T>

source

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

similar to self.borders_clone but does not allocate memory

source§

impl<T> HistogramFloat<T>

source

pub fn new(left: T, right: T, bins: usize) -> Result<Self, HistErrors>

Create a new Historgram
  • right exclusive, left inclusive
  • if you want right to behave (almost) the same as an inclusive border, consider using new(left, right + T::EPSILON, bins) (make sure, that adding Epsilon actually changes the value!)
source

pub fn interval_length(&self) -> T

Returns the length of the interval

source

pub fn bin_iter(&self) -> impl Iterator<Item = &[T; 2]>

Iterator over all the bins

In HistogramFloat a bin is defined by two values: The left border (inclusive) and the right border (exclusive)

Here you get an iterator which iterates over said borders. The Iterator returns a borrowed Array of length two, where the first value is the left (inclusive) border and the second value is the right (exclusive) border

Example
use sampling::histogram::*;
 
let hist = HistogramFloat::<f32>::new(0.0, 1.0, 2).unwrap();
let mut iter = hist.bin_iter();
assert_eq!(iter.next(), Some(&[0.0, 0.5]));
assert_eq!(iter.next(), Some(&[0.5, 1.0]));
assert_eq!(iter.next(), None);
source

pub fn bin_hits_iter(&self) -> impl Iterator<Item = (&[T; 2], usize)>

Iterate over all bins

In HistogramFloat a bin is defined by two values: The left border (inclusive) and the right border (exclusive)

This Iterator iterates over these values as well as the corresponding hit count ( i.e., how often a bin was hit)

Item of Iterator

(&[left_border, right_border], number_of_hits)

Example
use sampling::histogram::*;
 
let mut hist = HistogramFloat::<f64>::new(0.0, 1.0, 2).unwrap();
 
hist.increment_quiet(0.5);
hist.increment_quiet(0.71253782387);
 
let mut iter = hist.bin_hits_iter();
assert_eq!(iter.next(), Some((&[0.0, 0.5], 0)));
assert_eq!(iter.next(), Some((&[0.5, 1.0], 2)));
assert_eq!(iter.next(), None);
source

pub fn increment<B: Borrow<T>>(&mut self, val: B) -> Result<usize, HistErrors>

Increment hit count of bin

This will increment the hit count of the bin corresponding to the value val. If the bin was valid it will return the index of the corresponding bin

source

pub fn increment_quiet<B: Borrow<T>>(&mut self, val: B)

Increment hit count

Increments the hit count of the bin corresponding to val. If no bin corresponding to val exists, nothing happens

Trait Implementations§

source§

impl<T: Clone> Clone for HistogramFloat<T>

source§

fn clone(&self) -> HistogramFloat<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: Debug> Debug for HistogramFloat<T>

source§

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

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

impl<'de, T> Deserialize<'de> for HistogramFloat<T>
where T: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T> From<AtomicHistogramFloat<T>> for HistogramFloat<T>

source§

fn from(other: AtomicHistogramFloat<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<HistogramFloat<T>> for AtomicHistogramFloat<T>

source§

fn from(other: HistogramFloat<T>) -> Self

Converts to this type from the input type.
source§

impl<T> Histogram for HistogramFloat<T>

source§

fn bin_count(&self) -> usize

How many bins the histogram contains Read more
source§

fn hist(&self) -> &Vec<usize>

the created histogram Read more
source§

fn count_multiple_index( &mut self, index: usize, count: usize ) -> Result<(), HistErrors>

self.hist[index] += count, Err() if index out of bounds Read more
source§

fn reset(&mut self)

reset the histogram to zero
source§

fn count_index(&mut self, index: usize) -> Result<(), HistErrors>

self.hist[index] += 1, Err() if index out of bounds Read more
source§

fn any_bin_zero(&self) -> bool

check if any bin was not hit yet
source§

impl<T> HistogramIntervalDistance<T> for HistogramFloat<T>

source§

fn interval_distance_overlap<V: Borrow<T>>( &self, val: V, overlap: NonZeroUsize ) -> usize

Distance metric for how far a value is from a valid interval Read more
source§

impl<T> HistogramVal<T> for HistogramFloat<T>

source§

fn bin_enum_iter(&self) -> Box<dyn Iterator<Item = Bin<T>> + '_>

consider using self.bin_iter() instead
  • This gives you a dynamic iterator over all bins-
  • For this type all bins are InclusiveExclusive -> Usage of self.bin_iter is more efficient
source§

fn count_val<V: Borrow<T>>(&mut self, val: V) -> Result<usize, HistErrors>

count val. Ok(index), if inside of hist, Err(_) if val is invalid
source§

fn distance<V: Borrow<T>>(&self, val: V) -> f64

calculates some sort of absolute distance to the nearest valid bin Read more
source§

fn first_border(&self) -> T

get the left most border (inclusive)
source§

fn last_border(&self) -> T

get last border from the right Read more
source§

fn last_border_is_inclusive(&self) -> bool

True if last border is inclusive, false otherwise Read more
source§

fn is_inside<V: Borrow<T>>(&self, val: V) -> bool

does a value correspond to a valid bin?
source§

fn not_inside<V: Borrow<T>>(&self, val: V) -> bool

opposite of is_inside
source§

fn get_bin_index<V: Borrow<T>>(&self, val: V) -> Result<usize, HistErrors>

convert val to the respective histogram index
source§

impl<T> Serialize for HistogramFloat<T>
where T: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for HistogramFloat<T>
where T: RefUnwindSafe,

§

impl<T> Send for HistogramFloat<T>
where T: Send,

§

impl<T> Sync for HistogramFloat<T>
where T: Sync,

§

impl<T> Unpin for HistogramFloat<T>
where T: Unpin,

§

impl<T> UnwindSafe for HistogramFloat<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
§

impl<S, T> Cast<T> for S
where T: Conv<S>,

§

fn cast(self) -> T

Cast from Self to T Read more
§

fn try_cast(self) -> Result<T, Error>

Try converting from Self to T Read more
§

impl<S, T> CastApprox<T> for S
where T: ConvApprox<S>,

§

fn try_cast_approx(self) -> Result<T, Error>

Try approximate conversion from Self to T Read more
§

fn cast_approx(self) -> T

Cast approximately from Self to T Read more
§

impl<S, T> CastFloat<T> for S
where T: ConvFloat<S>,

§

fn cast_trunc(self) -> T

Cast to integer, truncating Read more
§

fn cast_nearest(self) -> T

Cast to the nearest integer Read more
§

fn cast_floor(self) -> T

Cast the floor to an integer Read more
§

fn cast_ceil(self) -> T

Cast the ceiling to an integer Read more
§

fn try_cast_trunc(self) -> Result<T, Error>

Try converting to integer with truncation Read more
§

fn try_cast_nearest(self) -> Result<T, Error>

Try converting to the nearest integer Read more
§

fn try_cast_floor(self) -> Result<T, Error>

Try converting the floor to an integer Read more
§

fn try_cast_ceil(self) -> Result<T, Error>

Try convert the ceiling to an integer 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, 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

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,