pub struct MotionModel3DFixedDt<R: RealField + Copy>{
pub transition_model: OMatrix<R, U6, U6>,
pub transition_model_transpose: OMatrix<R, U6, U6>,
pub transition_noise_covariance: OMatrix<R, U6, U6>,
}Expand description
constant velocity 3D motion model for fixed dt
The state vector is [x y z xvel yvel zvel]
Fields§
§transition_model: OMatrix<R, U6, U6>§transition_model_transpose: OMatrix<R, U6, U6>§transition_noise_covariance: OMatrix<R, U6, U6>Trait Implementations§
Source§impl<R: Clone + RealField + Copy> Clone for MotionModel3DFixedDt<R>
impl<R: Clone + RealField + Copy> Clone for MotionModel3DFixedDt<R>
Source§fn clone(&self) -> MotionModel3DFixedDt<R>
fn clone(&self) -> MotionModel3DFixedDt<R>
Returns a duplicate 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<R: RealField + Copy> TransitionModelLinearNoControl<R, Const<6>> for MotionModel3DFixedDt<R>
impl<R: RealField + Copy> TransitionModelLinearNoControl<R, Const<6>> for MotionModel3DFixedDt<R>
Source§fn predict(
&self,
previous_estimate: &StateAndCovariance<R, SS>,
) -> StateAndCovariance<R, SS>
fn predict( &self, previous_estimate: &StateAndCovariance<R, SS>, ) -> StateAndCovariance<R, SS>
Predict new state from previous estimate.
Auto Trait Implementations§
impl<R> Freeze for MotionModel3DFixedDt<R>
impl<R> RefUnwindSafe for MotionModel3DFixedDt<R>
impl<R> Send for MotionModel3DFixedDt<R>where
DefaultAllocator: Sized,
impl<R> Sync for MotionModel3DFixedDt<R>where
DefaultAllocator: Sized,
impl<R> Unpin for MotionModel3DFixedDt<R>
impl<R> UnsafeUnpin for MotionModel3DFixedDt<R>
impl<R> UnwindSafe for MotionModel3DFixedDt<R>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.