pub struct AcfResult {
pub acf: Vec<f64>,
pub confidence_threshold: f64,
}Expand description
Result of autocorrelation analysis.
Fields§
§acf: Vec<f64>Autocorrelation values for lags 0, 1, …, max_lag.
acf[0] is always 1.0.
confidence_threshold: f6495% confidence threshold = 1.96 / √n. Values with |acf[k]| > threshold (for k > 0) are significant.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AcfResult
impl RefUnwindSafe for AcfResult
impl Send for AcfResult
impl Sync for AcfResult
impl Unpin for AcfResult
impl UnsafeUnpin for AcfResult
impl UnwindSafe for AcfResult
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