pub struct UkfResult {
pub means: Vec<Vec<f64>>,
pub covs: Vec<Vec<f64>>,
pub pred_means: Vec<Vec<f64>>,
pub pred_covs: Vec<Vec<f64>>,
}Expand description
Result of running the UKF on a sequence of observations.
Fields§
§means: Vec<Vec<f64>>T filtered means (a-posteriori), each of length dim_x.
covs: Vec<Vec<f64>>T filtered covariances (a-posteriori), each of length dim_x².
pred_means: Vec<Vec<f64>>T predicted means (a-priori), each of length dim_x.
pred_covs: Vec<Vec<f64>>T predicted covariances (a-priori), each of length dim_x².
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UkfResult
impl RefUnwindSafe for UkfResult
impl Send for UkfResult
impl Sync for UkfResult
impl Unpin for UkfResult
impl UnsafeUnpin for UkfResult
impl UnwindSafe for UkfResult
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