EpiNow2 Stan Functions
Loading...
Searching...
No Matches
convolve.stan
Go to the documentation of this file.
1/**
2 * convolution_functions Functions
3 *
4 * This file contains functions for performing discrete convolutions, which are
5 * used throughout the model to combine time series with delay distributions.
6 *
7 * @ingroup convolution_functions
8 */
9
10/**
11 * Calculate convolution indices for the case where s <= xlen
12 *
13 * @param s Current position in the output vector
14 * @param xlen Length of the x vector
15 * @param ylen Length of the y vector
16 * @return An array of integers: {start_x, end_x, start_y, end_y}
17 *
18 * @ingroup convolution_functions
19 */
20array[] int calc_conv_indices_xlen(int s, int xlen, int ylen) {
21 int s_minus_ylen = s - ylen;
22 int start_x = max(1, s_minus_ylen + 1);
23 int end_x = s;
24 int start_y = max(1, 1 - s_minus_ylen);
25 int end_y = ylen;
26 return {start_x, end_x, start_y, end_y};
27}
28
29/**
30 * Calculate convolution indices for the case where s > xlen
31 *
32 * @param s Current position in the output vector
33 * @param xlen Length of the x vector
34 * @param ylen Length of the y vector
35 * @return An array of integers: {start_x, end_x, start_y, end_y}
36 *
37 * @ingroup convolution_functions
38 */
39array[] int calc_conv_indices_len(int s, int xlen, int ylen) {
40 int s_minus_ylen = s - ylen;
41 int start_x = max(1, s_minus_ylen + 1);
42 int end_x = xlen;
43 int start_y = max(1, 1 - s_minus_ylen);;
44 int end_y = ylen + xlen - s;
45 return {start_x, end_x, start_y, end_y};
46}
47
48/**
49 * Convolve a vector with a reversed probability mass function.
50 *
51 * This function performs a discrete convolution of two vectors, where the second vector
52 * is assumed to be an already reversed probability mass function.
53 *
54 * @param x The input vector to be convolved.
55 * @param y The already reversed probability mass function vector.
56 * @param len The desired length of the output vector.
57 * @return A vector of length `len` containing the convolution result.
58 * @throws If `len` is not of equal length to the sum of the lengths of `x` and `y`.
59 *
60 * @ingroup convolution_functions
61 */
62vector convolve_with_rev_pmf(vector x, vector y, int len) {
63 int xlen = num_elements(x);
64 int ylen = num_elements(y);
65 vector[len] z;
66
67 if (xlen + ylen - 1 < len) {
68 reject("convolve_with_rev_pmf: len is longer than x and y convolved");
69 }
70
71 if (xlen > len) {
72 reject("convolve_with_rev_pmf: len is shorter than x");
73 }
74
75 for (s in 1:xlen) {
76 array[4] int indices = calc_conv_indices_xlen(s, xlen, ylen);
77 z[s] = dot_product(x[indices[1]:indices[2]], y[indices[3]:indices[4]]);
78 }
79
80 if (len > xlen) {
81 for (s in (xlen + 1):len) {
82 array[4] int indices = calc_conv_indices_len(s, xlen, ylen);
83 z[s] = dot_product(x[indices[1]:indices[2]], y[indices[3]:indices[4]]);
84 }
85 }
86
87 return z;
88}
89
90/**
91 * Convolve infections to reported cases.
92 *
93 * This function convolves a vector of infections with a reversed delay
94 * distribution to produce a vector of reported cases.
95 *
96 * @param infections A vector of infection counts.
97 * @param delay_rev_pmf A vector representing the reversed probability mass
98 * function of the delay distribution.
99 * @param seeding_time The number of initial time steps to exclude from the
100 * output.
101 * @return A vector of reported cases, starting from `seeding_time + 1`.
102 *
103 * @ingroup convolution_functions
104 */
105vector convolve_to_report(vector infections,
106 vector delay_rev_pmf,
107 int seeding_time) {
108 int t = num_elements(infections);
109 int delays = num_elements(delay_rev_pmf);
110
111 if (delays == 0) {
112 return infections[(seeding_time + 1):t];
113 }
114
115 vector[t] unobs_reports = convolve_with_rev_pmf(infections, delay_rev_pmf, t);
116 return unobs_reports[(seeding_time + 1):t];
117}
118
vector convolve_with_rev_pmf(vector x, vector y, int len)
Definition convolve.stan:62
array[] int calc_conv_indices_len(int s, int xlen, int ylen)
Definition convolve.stan:39
vector convolve_to_report(vector infections, vector delay_rev_pmf, int seeding_time)
array[] int calc_conv_indices_xlen(int s, int xlen, int ylen)
Definition convolve.stan:20