Skip to content

Commit

Permalink
something tiny
Browse files Browse the repository at this point in the history
  • Loading branch information
twallema committed Aug 1, 2024
1 parent 25a77b6 commit 7f59993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class stratified_SIR(ODE):
return dS, dI, dR
```

When initializing the model, provide a dictionary containing coordinates for every dimension declared previously. In the example below, we'll declare four age groups: 0-5, 5-15, 15-65 and 65-120 year olds. **All** model states are now 1D vectors of shape `(4,)`.
When initializing your model, provide a dictionary containing coordinates for every dimension declared previously. In the example below, we'll declare four age groups: 0-5, 5-15, 15-65 and 65-120 year olds. **All** model states are now 1D vectors of shape `(4,)`.

```python
model = stratified_SIR(states={'S': 1000*np.ones(4), 'I': np.ones(4)},
Expand Down

0 comments on commit 7f59993

Please sign in to comment.