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

type Distance: Distance

The distance between two indices.

Required Methods

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

Compute the covariance.

Provided Methods

fn var(&self) -> f64

Compute the variance.

Implementors