ErrorPropagationMethod

Trait ErrorPropagationMethod 

Source
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§

Source

fn propagate_errors( &self, measurement_errors: &Array1<f64>, reconstruction: &ReconstructedState, ) -> Array2<f64>

Propagate measurement errors to state reconstruction

Source

fn get_method_name(&self) -> &str

Get method name

Implementors§