pub enum CovarianceUpdateMethod {
OptimalKalman,
OptimalKalmanForcedSymmetric,
JosephForm,
}
Expand description
Specifies the approach used for updating the covariance matrix
Variants§
OptimalKalman
Assumes optimal Kalman gain.
Due to numerical errors, covariance matrix may not remain symmetric.
OptimalKalmanForcedSymmetric
Assumes optimal Kalman gain and then forces symmetric covariance matrix.
With original covariance matrix P, returns covariance as (P + P.T)/2 to enforce that the covariance matrix remains symmetric.
JosephForm
Joseph form of covariance update keeps covariance matrix symmetric.
Trait Implementations§
source§impl Clone for CovarianceUpdateMethod
impl Clone for CovarianceUpdateMethod
source§fn clone(&self) -> CovarianceUpdateMethod
fn clone(&self) -> CovarianceUpdateMethod
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CovarianceUpdateMethod
impl Debug for CovarianceUpdateMethod
source§impl PartialEq for CovarianceUpdateMethod
impl PartialEq for CovarianceUpdateMethod
source§fn eq(&self, other: &CovarianceUpdateMethod) -> bool
fn eq(&self, other: &CovarianceUpdateMethod) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CovarianceUpdateMethod
impl StructuralPartialEq for CovarianceUpdateMethod
Auto Trait Implementations§
impl Freeze for CovarianceUpdateMethod
impl RefUnwindSafe for CovarianceUpdateMethod
impl Send for CovarianceUpdateMethod
impl Sync for CovarianceUpdateMethod
impl Unpin for CovarianceUpdateMethod
impl UnwindSafe for CovarianceUpdateMethod
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moresource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.