20 vector[M] indices = linspaced_vector(M, 1, M);
21 real factor = alpha * sqrt(sqrt(2 * pi()) * rho);
22 real exponent = -0.25 * (rho * pi() / 2 / L)^2;
23 return factor * exp(exponent * square(indices));
38 vector[M] indices = linspaced_vector(M, 1, M);
40 vector[M] denom = rho * ((1 / rho)^2 + pow(pi() / 2 / L * indices, 2));
41 return alpha * sqrt(factor * inv(denom));
56 vector[M] indices = linspaced_vector(M, 1, M);
57 real factor = 2 * alpha * pow(sqrt(3) / rho, 1.5);
58 vector[M] denom = (sqrt(3) / rho)^2 + pow((pi() / 2 / L) * indices, 2);
59 return factor * inv(denom);
74 vector[M] indices = linspaced_vector(M, 1, M);
75 real factor = 3 * pow(sqrt(5) / rho, 5);
77 2 * pow((sqrt(5) / rho)^2 + pow((pi() / 2 / L) * indices, 2), 3);
78 return alpha * sqrt(factor * inv(denom));
92 real a = inv_square(rho);
93 vector[M] indices = linspaced_vector(M, 1, M);
96 (log(2) - a + to_vector(log_modified_bessel_first_kind(indices, a)))
98 return append_row(q, q);
112matrix
PHI(
int N,
int M, real L, vector x) {
113 matrix[N, M] phi = sin(
115 rep_matrix(pi() / (2 * L) * (x + L), M), linspaced_vector(M, 1, M)
133 matrix[N, M] mw0x = diag_post_multiply(
134 rep_matrix(w0 * x, M), linspaced_vector(M, 1, M)
136 return append_col(cos(mw0x), sin(mw0x));
154 int stationary,
int future_fixed,
int fixed_from) {
155 int noise_time = estimate_r > 0 ? (stationary > 0 ? ot_h : ot_h - 1) : t;
157 future_fixed > 0 ? (noise_time - horizon + fixed_from) : noise_time;
173matrix
setup_gp(
int M, real L,
int dimension,
int is_periodic, real w0) {
174 vector[dimension] x = linspaced_vector(dimension, 1, dimension);
175 x = 2 * (x - mean(x)) / (max(x) - 1);
179 return PHI(dimension, M, L, x);
197 real rho, vector eta,
int type, real nu) {
198 vector[type == 1 ? 2 * M : M] diagSPD;
203 }
else if (type == 1) {
205 }
else if (type == 2) {
208 }
else if (nu == 1.5) {
210 }
else if (nu == 2.5) {
213 reject(
"nu must be one of 1/2, 3/2 or 5/2; found nu=", nu);
216 return PHI * (diagSPD .* eta);
vector update_gp(matrix PHI, int M, real L, real alpha, real rho, vector eta, int type, real nu)
matrix PHI_periodic(int N, int M, real w0, vector x)
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)
int setup_noise(int ot_h, int t, int horizon, int estimate_r, int stationary, int future_fixed, int fixed_from)
matrix setup_gp(int M, real L, int dimension, int is_periodic, real w0)
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)
void gaussian_process_lp(vector eta)