-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.m
62 lines (48 loc) · 1.06 KB
/
main.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
% Analysis of COVID-19 epidemic
%
% Data from:
% https://hgis.uw.edu/virus/
% http://hgis.uw.edu/virus/assets/virus.csv
% Epidemic Curve fit from:
% -- @Spark, fill this in? --
% user determines which sequences to run
do_us = 1;
do_ma = 1;
do_ch = 1;
do_it = 1;
do_wa = 1;
do_tx = 1;
do_ca = 1;
% end
close all
addpath('data')
addpath('utils')
if do_us
locale = 'us'; % Update desired locale here
fitVirus(@getDataUW,locale);
end
if do_ch
locale = 'china'; % Update desired locale here
fitVirus(@getDataUW,locale);
end
if do_ma
locale = 'massachusetts'; % Update desired locale here
fitVirus(@getDataUW,locale);
end
if do_wa
locale = 'washington'; % Update desired locale here
fitVirus(@getDataUW,locale);
end
if do_it
locale = 'italy'; % Update desired locale here
fitVirus(@getDataUW,locale);
end
if do_tx
locale = 'texas'; % Update desired locale here
fitVirus(@getDataUW,locale);
end
if do_ca
locale = 'california'; % Update desired locale here
fitVirus(@getDataUW,locale);
end
close all