Struct fastiron_stats::structures::raw::TalliedVariable
source · pub struct TalliedVariable {
pub values: Vec<f64>,
pub mean: f64,
pub variance: f64,
}
Expand description
Structure used to model tallied events, interpreted as discrete finite random variables.
This structure is not meant to be modified. It should be initialized with all values using the provided constructor.
Fields§
§values: Vec<f64>
Values taken by the random variables.
mean: f64
Associated mean.
variance: f64
Associated variance.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TalliedVariable
impl RefUnwindSafe for TalliedVariable
impl Send for TalliedVariable
impl Sync for TalliedVariable
impl Unpin for TalliedVariable
impl UnwindSafe for TalliedVariable
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