You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than requiring use of functions like x = sir_param(...); y = sir_state0(...) and simulate_sir(...x,y) for every model, add a layer of abstraction allowing use of (say) x = model_param(...); y = model_state0(...) and simulate(model = 'sir',....x,y)
The text was updated successfully, but these errors were encountered:
Rather than requiring use of functions like
x = sir_param(...)
;y = sir_state0(...)
andsimulate_sir(...x,y)
for every model, add a layer of abstraction allowing use of (say)x = model_param(...)
;y = model_state0(...)
andsimulate(model = 'sir',....x,y)
The text was updated successfully, but these errors were encountered: