Trait nyx_space::od::noise::Stochastics

source ·
pub trait Stochastics {
    // Required methods
    fn covariance(&self, epoch: Epoch) -> f64;
    fn sample<R: Rng>(&mut self, epoch: Epoch, rng: &mut R) -> f64;
}
Expand description

Trait for any kind of stochastic modeling, developing primarily for synthetic orbit determination measurements.

Required Methods§

source

fn covariance(&self, epoch: Epoch) -> f64

Return the variance of this stochastic noise model at a given time.

source

fn sample<R: Rng>(&mut self, epoch: Epoch, rng: &mut R) -> f64

Returns a new sample of these stochastics

Object Safety§

This trait is not object safe.

Implementors§