EpiNow2 Stan Functions
Loading...
Searching...
No Matches
Convolution Functions

Functions for convolving time series. More...

+ Collaboration diagram for Convolution Functions:

Functions

array[] int calc_conv_indices_len (int s, int xlen, int ylen)
 
array[] int calc_conv_indices_xlen (int s, int xlen, int ylen)
 
vector convolve_to_report (vector infections, vector delay_rev_pmf, int seeding_time)
 
vector convolve_with_rev_pmf (vector x, vector y, int len)
 

Description

Functions for convolving time series.

Functions from convolve.stan for implementing convolutions between infections and delay distributions.

Function Documentation

◆ calc_conv_indices_len()

array[] int calc_conv_indices_len ( int s,
int xlen,
int ylen )

#include </github/workspace/inst/stan/functions/convolve.stan>

Calculate convolution indices for the case where s > xlen

Parameters
sCurrent position in the output vector
xlenLength of the x vector
ylenLength of the y vector
Returns
An array of integers: {start_x, end_x, start_y, end_y}

Definition at line 39 of file convolve.stan.

39 {
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}

Referenced by convolve_with_rev_pmf().

+ Here is the caller graph for this function:

◆ calc_conv_indices_xlen()

array[] int calc_conv_indices_xlen ( int s,
int xlen,
int ylen )

#include </github/workspace/inst/stan/functions/convolve.stan>

convolution_functions Functions

This file contains functions for performing discrete convolutions, which are used throughout the model to combine time series with delay distributions. Calculate convolution indices for the case where s <= xlen

Parameters
sCurrent position in the output vector
xlenLength of the x vector
ylenLength of the y vector
Returns
An array of integers: {start_x, end_x, start_y, end_y}

Definition at line 20 of file convolve.stan.

20 {
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}

Referenced by convolve_with_rev_pmf().

+ Here is the caller graph for this function:

◆ convolve_to_report()

vector convolve_to_report ( vector infections,
vector delay_rev_pmf,
int seeding_time )

#include </github/workspace/inst/stan/functions/convolve.stan>

Convolve infections to reported cases.

This function convolves a vector of infections with a reversed delay distribution to produce a vector of reported cases.

Parameters
infectionsA vector of infection counts.
delay_rev_pmfA vector representing the reversed probability mass function of the delay distribution.
seeding_timeThe number of initial time steps to exclude from the output.
Returns
A vector of reported cases, starting from seeding_time + 1.

Definition at line 105 of file convolve.stan.

107 {
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}
vector convolve_with_rev_pmf(vector x, vector y, int len)
Definition convolve.stan:62

References convolve_with_rev_pmf().

+ Here is the call graph for this function:

◆ convolve_with_rev_pmf()

vector convolve_with_rev_pmf ( vector x,
vector y,
int len )

#include </github/workspace/inst/stan/functions/convolve.stan>

Convolve a vector with a reversed probability mass function.

This function performs a discrete convolution of two vectors, where the second vector is assumed to be an already reversed probability mass function.

Parameters
xThe input vector to be convolved.
yThe already reversed probability mass function vector.
lenThe desired length of the output vector.
Returns
A vector of length len containing the convolution result.
Exceptions
Iflen is not of equal length to the sum of the lengths of x and y.

Definition at line 62 of file convolve.stan.

62 {
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}
array[] int calc_conv_indices_len(int s, int xlen, int ylen)
Definition convolve.stan:39
array[] int calc_conv_indices_xlen(int s, int xlen, int ylen)
Definition convolve.stan:20

References calc_conv_indices_len(), and calc_conv_indices_xlen().

Referenced by convolve_to_report(), and get_delay_rev_pmf().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: