pub struct Geometric {
pub x: Vec<usize>,
pub p: f64,
}Expand description
Tracks observations processing structural patterns for Discrete Geometric configurations.
Fields§
§x: Vec<usize>Number of trials until the first success occurs ($x$).
p: f64Probability of success on a single trial ($p$).
Implementations§
Auto Trait Implementations§
impl Freeze for Geometric
impl RefUnwindSafe for Geometric
impl Send for Geometric
impl Sync for Geometric
impl Unpin for Geometric
impl UnwindSafe for Geometric
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more