pub struct AcfResult {
pub values: Array1<f64>,
pub conf_band: f64,
}Expand description
Result of an autocorrelation/partial-autocorrelation computation.
Fields§
§values: Array1<f64>The correlation values, lag 0..=nlags (index 0 is always 1.0).
conf_band: f64The (symmetric) confidence-band half-width z_{alpha/2} / sqrt(n).
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