[][src]Struct cetkaik_full_state_transition::probabilistic::Prob

pub struct Prob<T>(pub Vec<(T, f64)>);

Describes the general probability density. Note that this implementation assumes that the sum is exactly 1. /一般の確率分布。f64の和が厳密に1になることを前提としている。

Implementations

impl<T> Prob<T>[src]

#[must_use]pub fn choose_by_uniform_random_variable(self, rand: f64) -> T[src]

Expects a float within the range of 0 up to but not including 1.

#[must_use]pub fn choose(self) -> T[src]

Trait Implementations

impl<T: Clone> Into<Prob<(T, Option<usize>)>> for Probabilistic<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Prob<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Prob<T> where
    T: Send
[src]

impl<T> Sync for Prob<T> where
    T: Sync
[src]

impl<T> Unpin for Prob<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Prob<T> where
    T: UnwindSafe
[src]

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