Description Usage Arguments Value Examples
View source: R/deterministic_postquarantine.R
This function gives deterministic compartments of travelers status after completed quarantine.
1 | deterministic_postquarantine(theta, inp)
|
theta |
parameter |
inp |
is a list include durationquarantine : number of days and ini: initial compartments of arrival |
The average status of arrivals compartments after complete quarantine
1 2 3 4 5 6 7 8 9 10 | ## Not run: ## Initial Condition
S1 = 900
I1 = 100
A1 = 0
x1 = c(S1,I1,A1,0,0,0)#
days= 14
inp = list(durationquarantine = days, ini = x1)
theta0 = c(0,0,1/14,3/100,1,.5)
deterministic_postquarantine(theta0,inp)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.