Struct linearkalman::KalmanState [] [src]

pub struct KalmanState {
    pub x: Vector<f64>,
    pub p: Matrix<f64>,
}

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

Trait Implementations

impl Clone for KalmanState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for KalmanState
[src]

Formats the value using the given formatter.