pub struct ExtendedKalmanResult {
pub means: Vec<Vec<f64>>,
pub covs: Vec<Vec<f64>>,
}Expand description
Result of running the EKF on a sequence.
Fields§
§means: Vec<Vec<f64>>§covs: Vec<Vec<f64>>Trait Implementations§
Source§impl Clone for ExtendedKalmanResult
impl Clone for ExtendedKalmanResult
Source§fn clone(&self) -> ExtendedKalmanResult
fn clone(&self) -> ExtendedKalmanResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExtendedKalmanResult
impl RefUnwindSafe for ExtendedKalmanResult
impl Send for ExtendedKalmanResult
impl Sync for ExtendedKalmanResult
impl Unpin for ExtendedKalmanResult
impl UnsafeUnpin for ExtendedKalmanResult
impl UnwindSafe for ExtendedKalmanResult
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