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
Copy file name to clipboardExpand all lines: docs/src/introduction_to_catalyst/catalyst_for_new_julia_users.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,18 +39,18 @@ Finally, we note that the first time some code is run in Julia, it has to be *co
39
39
```@example ex1
40
40
rand(100, 100)^3.5;
41
41
```
42
-
(This code creates a random 100x100 matrix, and take it to the power of 3.5)
42
+
(This code creates a random 100x100 matrix, and takes it to the power of 3.5)
43
43
44
44
This is useful to know when you e.g. declare, simulate, or plot, a Catalyst model. The first time you run a command there might be a slight delay. However, subsequent runs will execute much quicker. This holds even if you do minor adjustments before the second run (such as changing simulation initial conditions).
45
45
46
46
## Installing and activating packages
47
-
Except for some base Julia packages (such as `Pkg`, the package manager) that are available by default, Julia packages must be installed locally before they can be used. Most packages are registered with Julia, and can be added through the `Pkg.add("DesiredPackage")` command (where `DesiredPackage` is the name of the package you wish to install). We can thus install Catalyst:
47
+
Except for some base Julia packages (such as Pkg, the package manager) that are available by default, Julia packages must be installed locally before they can be used. Most packages are registered with Julia, and can be added through the `Pkg.add("DesiredPackage")` command (where `DesiredPackage` is the name of the package you wish to install). We can thus install Catalyst:
48
48
```julia
49
49
using Pkg
50
50
Pkg.add("Catalyst")
51
51
```
52
52
53
-
Here, the command `using Pkg` is required to activate the Pkg` package manager.
53
+
Here, the command `using Pkg` is required to activate the Pkg package manager.
54
54
55
55
Next, we also wish to add the `DifferentialEquations` and `Plots` packages (for numeric simulation of models, and plotting, respectively).
56
56
```julia
@@ -184,4 +184,4 @@ plot(sol)
184
184
185
185
---
186
186
## Feedback
187
-
If you are a new Julia user who has used this tutorial, and there was something you struggled with or would have liked to have explained better, please [raise an issue](https://github.com/SciML/Catalyst.jl/issues). That way, we can continue improving this tutorial.
187
+
If you are a new Julia user who has used this tutorial, and there was something you struggled with or would have liked to have explained better, please [raise an issue](https://github.com/SciML/Catalyst.jl/issues). That way, we can continue improving this tutorial.
0 commit comments