Means module

Mean functions for GRFs.

class meslas.means.ConstantMean(means)

Bases: object

Constant mean function.

Parameters:
means: (p) array-like.

Constant mean of each of the p-components.

Methods

__call__(S, L)

Parameters:

class meslas.means.LinearMean(beta0s, beta1s)

Bases: object

Linear trend mean function. The mean at location x will be given by beta0 + beta1 x

Parameters:
betas0: (p) array-like.

Constant mean mean term for of each of the p-components.

betas1: (p, d) array-like.

Linear trend matrix for each of the p-components.

Methods

__call__(S, L)

Parameters: