pub struct BirkhoffAverage {
pub sum: f64,
pub count: usize,
pub history: Vec<f64>,
}Expand description
Running Birkhoff time-average of an observable along a trajectory.
Tracks how the time average converges as more of the trajectory is consumed. For an ergodic system, the running average converges to the space average under the invariant measure.
Fields§
§sum: f64The accumulated sum of f(x_t) observed so far.
count: usizeNumber of samples consumed.
history: Vec<f64>History of running averages (one entry per update call).
Implementations§
Trait Implementations§
Source§impl Clone for BirkhoffAverage
impl Clone for BirkhoffAverage
Source§fn clone(&self) -> BirkhoffAverage
fn clone(&self) -> BirkhoffAverage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BirkhoffAverage
impl Debug for BirkhoffAverage
Auto Trait Implementations§
impl Freeze for BirkhoffAverage
impl RefUnwindSafe for BirkhoffAverage
impl Send for BirkhoffAverage
impl Sync for BirkhoffAverage
impl Unpin for BirkhoffAverage
impl UnsafeUnpin for BirkhoffAverage
impl UnwindSafe for BirkhoffAverage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.