We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce89f9a + 84ee99d commit 66c31b9Copy full SHA for 66c31b9
docs/src/index.md
@@ -89,7 +89,7 @@ Pkg.add("Catalyst")
89
To solve Catalyst models and visualize solutions, it is also recommended to
90
install DifferentialEquations.jl and Plots.jl
91
```julia
92
-Pkg.add("DifferentialEquations")
+Pkg.add("OrdinaryDiffEq")
93
Pkg.add("Plots")
94
```
95
@@ -114,7 +114,7 @@ which in Jupyter notebooks will give the figure
114
115
To generate and solve a mass action ODE version of the model we use
116
```@example ind1
117
-using DifferentialEquations
+using OrdinaryDiffEq
118
p = [:α => .1/1000, :β => .01]
119
tspan = (0.0,250.0)
120
u0 = [:S => 999.0, :I => 1.0, :R => 0.0]
0 commit comments