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 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<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.
source§fn transition_model(
&self
) -> &Matrix<R, SS, SS, <DefaultAllocator as Allocator<R, SS, SS>>::Buffer>
fn transition_model( &self ) -> &Matrix<R, SS, SS, <DefaultAllocator as Allocator<R, SS, SS>>::Buffer>
👎Deprecated since 0.8.0: Please use the F function instead
Get the state transition model,
F
.source§fn transition_model_transpose(
&self
) -> &Matrix<R, SS, SS, <DefaultAllocator as Allocator<R, SS, SS>>::Buffer>
fn transition_model_transpose( &self ) -> &Matrix<R, SS, SS, <DefaultAllocator as Allocator<R, SS, SS>>::Buffer>
👎Deprecated since 0.8.0: Please use the FT function instead
Get the transpose of the state transition model,
FT
.source§fn transition_noise_covariance(
&self
) -> &Matrix<R, SS, SS, <DefaultAllocator as Allocator<R, SS, SS>>::Buffer>
fn transition_noise_covariance( &self ) -> &Matrix<R, SS, SS, <DefaultAllocator as Allocator<R, SS, SS>>::Buffer>
👎Deprecated since 0.8.0: Please use the Q function instead
Get the transition noise covariance.
Auto Trait Implementations§
impl<R> !Freeze for MotionModel3DFixedDt<R>
impl<R> !RefUnwindSafe for MotionModel3DFixedDt<R>
impl<R> !Send for MotionModel3DFixedDt<R>
impl<R> !Sync for MotionModel3DFixedDt<R>
impl<R> !Unpin 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<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.