Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
TorkelE committed Jun 5, 2024
1 parent ce89f9a commit 84ee99d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Pkg.add("Catalyst")
To solve Catalyst models and visualize solutions, it is also recommended to
install DifferentialEquations.jl and Plots.jl
```julia
Pkg.add("DifferentialEquations")
Pkg.add("OrdinaryDiffEq")
Pkg.add("Plots")
```

Expand All @@ -114,7 +114,7 @@ which in Jupyter notebooks will give the figure

To generate and solve a mass action ODE version of the model we use
```@example ind1
using DifferentialEquations
using OrdinaryDiffEq
p = [:α => .1/1000, :β => .01]
tspan = (0.0,250.0)
u0 = [:S => 999.0, :I => 1.0, :R => 0.0]
Expand Down

0 comments on commit 84ee99d

Please sign in to comment.