pub trait TransitionModelLinearNoControl<R, SS>{
// Required methods
fn F(&self) -> &Matrix<R, SS, SS, Owned<R, SS, SS>>;
fn FT(&self) -> &Matrix<R, SS, SS, Owned<R, SS, SS>>;
fn Q(&self) -> &Matrix<R, SS, SS, Owned<R, SS, SS>>;
// Provided method
fn predict(
&self,
previous_estimate: &StateAndCovariance<R, SS>,
) -> StateAndCovariance<R, SS> { ... }
}Expand description
A linear model of process dynamics with no control inputs
Required Methods§
Provided Methods§
Sourcefn 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.