Trait stochastic::Stationary [] [src]

pub trait Stationary {
    type Distance: Distance;
    fn cov(&self, _: Self::Distance) -> f64;

    fn var(&self) -> f64 { ... }
}

A stationary process.

Associated Types

The distance between two indices.

Required Methods

Compute the covariance.

Provided Methods

Compute the variance.

Implementors