pub struct SesResult {
pub smoothed: Vec<f64>,
pub forecast: f64,
}Expand description
Result of simple exponential smoothing at each time step.
Fields§
§smoothed: Vec<f64>Smoothed values.
forecast: f64One-step-ahead forecast for the next period.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SesResult
impl RefUnwindSafe for SesResult
impl Send for SesResult
impl Sync for SesResult
impl Unpin for SesResult
impl UnwindSafe for SesResult
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