pub struct KalmanResult {
pub means: Array2<f64>,
pub covariances: Array3<f64>,
pub pred_means: Array2<f64>,
pub pred_covariances: Array3<f64>,
pub log_likelihood: f64,
}Expand description
Result of the Kalman filter forward pass.
Fields§
§means: Array2<f64>§covariances: Array3<f64>§pred_means: Array2<f64>§pred_covariances: Array3<f64>§log_likelihood: f64Auto Trait Implementations§
impl Freeze for KalmanResult
impl RefUnwindSafe for KalmanResult
impl Send for KalmanResult
impl Sync for KalmanResult
impl Unpin for KalmanResult
impl UnsafeUnpin for KalmanResult
impl UnwindSafe for KalmanResult
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more