EpiNow2 Stan Functions
Loading...
Searching...
No Matches
gaussian_process.stan File Reference

Functions in this File

vector diagSPD_EQ (real alpha, real rho, real L, int M)
 
vector diagSPD_Matern12 (real alpha, real rho, real L, int M)
 
vector diagSPD_Matern32 (real alpha, real rho, real L, int M)
 
vector diagSPD_Matern52 (real alpha, real rho, real L, int M)
 
vector diagSPD_Periodic (real alpha, real rho, int M)
 
void gaussian_process_lp (vector eta)
 
matrix PHI (int N, int M, real L, vector x)
 
matrix PHI_periodic (int N, int M, real w0, vector x)
 
matrix setup_gp (int M, real L, int dimension, int is_periodic, real w0)
 
int setup_noise (int ot_h, int t, int horizon, int estimate_r, int stationary, int future_fixed, int fixed_from)
 
vector update_gp (matrix PHI, int M, real L, real alpha, real rho, vector eta, int type, real nu)
 

Function Documentation

◆ update_gp()

vector update_gp ( matrix PHI,
int M,
real L,
real alpha,
real rho,
vector eta,
int type,
real nu )

Update Gaussian process using spectral densities

Parameters
PHIBasis functions matrix
MNumber of basis functions
LLength of the interval
alphaScaling parameter
rhoLength scale parameter
etaVector of noise terms
typeType of kernel (0: SE, 1: Periodic, 2: Matern)
nuSmoothness parameter for Matern kernel
Returns
A vector of updated noise terms

Definition at line 196 of file gaussian_process.stan.

197 {
198 vector[type == 1 ? 2 * M : M] diagSPD; // spectral density
199
200 // GP in noise - spectral densities
201 if (type == 0) {
202 diagSPD = diagSPD_EQ(alpha, rho, L, M);
203 } else if (type == 1) {
204 diagSPD = diagSPD_Periodic(alpha, rho, M);
205 } else if (type == 2) {
206 if (nu == 0.5) {
207 diagSPD = diagSPD_Matern12(alpha, rho, L, M);
208 } else if (nu == 1.5) {
209 diagSPD = diagSPD_Matern32(alpha, rho, L, M);
210 } else if (nu == 2.5) {
211 diagSPD = diagSPD_Matern52(alpha, rho, L, M);
212 } else {
213 reject("nu must be one of 1/2, 3/2 or 5/2; found nu=", nu);
214 }
215 }
216 return PHI * (diagSPD .* eta);
217}
vector diagSPD_EQ(real alpha, real rho, real L, int M)
vector diagSPD_Periodic(real alpha, real rho, int M)
vector diagSPD_Matern12(real alpha, real rho, real L, int M)
matrix PHI(int N, int M, real L, vector x)
vector diagSPD_Matern52(real alpha, real rho, real L, int M)
vector diagSPD_Matern32(real alpha, real rho, real L, int M)

References diagSPD_EQ(), diagSPD_Matern12(), diagSPD_Matern32(), diagSPD_Matern52(), diagSPD_Periodic(), and PHI().

+ Here is the call graph for this function: