pub struct EstimationPipeline<T> {
pub model: EkModel<T>,
pub config: EkConfig<T>,
pub state: KalmanState<T>,
}Expand description
Extended Kalman filter orchestration wrapper.
Fields§
§model: EkModel<T>§config: EkConfig<T>§state: KalmanState<T>Implementations§
Source§impl<T: NabledReal + LuProviderScalar> EstimationPipeline<T>
impl<T: NabledReal + LuProviderScalar> EstimationPipeline<T>
pub fn new( model: EkModel<T>, config: EkConfig<T>, state: KalmanState<T>, ) -> Self
Sourcepub fn update(
&mut self,
measurement: &ArrayView1<'_, T>,
) -> Result<(), SimError>
pub fn update( &mut self, measurement: &ArrayView1<'_, T>, ) -> Result<(), SimError>
Run update step in place.
Sourcepub fn predict_update(
&mut self,
measurement: &ArrayView1<'_, T>,
) -> Result<(), SimError>
pub fn predict_update( &mut self, measurement: &ArrayView1<'_, T>, ) -> Result<(), SimError>
Predict then update in one call.
Trait Implementations§
Source§impl<T: Clone> Clone for EstimationPipeline<T>
impl<T: Clone> Clone for EstimationPipeline<T>
Source§fn clone(&self) -> EstimationPipeline<T>
fn clone(&self) -> EstimationPipeline<T>
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<T> Freeze for EstimationPipeline<T>
impl<T> RefUnwindSafe for EstimationPipeline<T>where
T: RefUnwindSafe,
impl<T> Send for EstimationPipeline<T>where
T: Send,
impl<T> Sync for EstimationPipeline<T>where
T: Sync,
impl<T> Unpin for EstimationPipeline<T>
impl<T> UnsafeUnpin for EstimationPipeline<T>
impl<T> UnwindSafe for EstimationPipeline<T>where
T: RefUnwindSafe,
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