Trait stochastic::Process [] [src]

pub trait Process {
    type Index: Copy;
    type State;
    fn cov(&self, _: Self::Index, _: Self::Index) -> f64;

    fn var(&self, index: Self::Index) -> f64 { ... }
}

A stochastic process.

Associated Types

The index set.

The state space.

Required Methods

Compute the covariance.

Provided Methods

Compute the variance.

Implementors