pub struct EkModel<T> {
pub predict_state: fn(&ArrayView1<'_, T>) -> Array1<T>,
pub predict_jacobian: fn(&ArrayView1<'_, T>) -> Array2<T>,
pub measure: fn(&ArrayView1<'_, T>) -> Array1<T>,
pub measure_jacobian: fn(&ArrayView1<'_, T>) -> Array2<T>,
}Expand description
Nonlinear EKF model callbacks.
Fields§
§predict_state: fn(&ArrayView1<'_, T>) -> Array1<T>§predict_jacobian: fn(&ArrayView1<'_, T>) -> Array2<T>§measure: fn(&ArrayView1<'_, T>) -> Array1<T>§measure_jacobian: fn(&ArrayView1<'_, T>) -> Array2<T>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for EkModel<T>
impl<T> RefUnwindSafe for EkModel<T>
impl<T> Send for EkModel<T>
impl<T> Sync for EkModel<T>
impl<T> Unpin for EkModel<T>
impl<T> UnsafeUnpin for EkModel<T>
impl<T> UnwindSafe for EkModel<T>
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