gaussian.process: Create a Centered Gaussian Process

Description Usage Arguments Details Value Examples

View source: R/processes.R

Description

Create a Centered Gaussian Process

Usage

1

Arguments

cov

a function handle that defines covariance function; see details.

Details

The parameter cov shall take two arguments arg1 and arg2 as input, both are vectors, and cov(arg1,arg2) returns a matrix R such that R(i,j) is the value of the covariance function at (arg1[i],arg2[j]).

Value

a function hanlde in the form of X(tObs,n) which generates n independent trajectories observed at tObs.

Examples

1
2
X <- gaussian.process()
X(regular.grid(50),25)

synfd documentation built on July 1, 2020, 6:04 p.m.