pub trait ErrorPropagationMethod:
Send
+ Sync
+ Debug {
// Required methods
fn propagate_errors(
&self,
measurement_errors: &Array1<f64>,
reconstruction: &ReconstructedState,
) -> Array2<f64>;
fn get_method_name(&self) -> &str;
}Expand description
Error propagation method trait
Required Methods§
Sourcefn propagate_errors(
&self,
measurement_errors: &Array1<f64>,
reconstruction: &ReconstructedState,
) -> Array2<f64>
fn propagate_errors( &self, measurement_errors: &Array1<f64>, reconstruction: &ReconstructedState, ) -> Array2<f64>
Propagate measurement errors to state reconstruction
Sourcefn get_method_name(&self) -> &str
fn get_method_name(&self) -> &str
Get method name