pub struct KalmanState {
pub x: Vector<f64>,
pub p: Matrix<f64>,
}
Expand description
Container with the value of state variable and its covariance. This struct is used throughout all parts of Kalman procedure and may refer to predicted, filtered and smoothed variables depending on the context.
Fields§
§x: Vector<f64>
§p: Matrix<f64>
Trait Implementations§
Source§impl Clone for KalmanState
impl Clone for KalmanState
Source§fn clone(&self) -> KalmanState
fn clone(&self) -> KalmanState
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 moreAuto Trait Implementations§
impl Freeze for KalmanState
impl RefUnwindSafe for KalmanState
impl Send for KalmanState
impl Sync for KalmanState
impl Unpin for KalmanState
impl UnwindSafe for KalmanState
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