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

type Index: Copy

The index set.

type State

The state space.

Required Methods

fn cov(&self, Self::Index, Self::Index) -> f64

Compute the covariance.

Provided Methods

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

Compute the variance.

Implementors