File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ to manipulate.
21
21
### Example: ODE
22
22
23
23
Let's build an ODE. First we define some variables. In a differential equation
24
- system, we need to differentiate between our unknown variables, independent
24
+ system, we need to differentiate between our unknown (dependent) variables, independent
25
25
variables, and parameters. Therefore we label them as follows:
26
26
27
27
``` julia
@@ -87,9 +87,7 @@ f = ODEFunction(de)
87
87
88
88
We can also build nonlinear systems. Let's say we wanted to solve for the steady
89
89
state of the previous ODE. This is the nonlinear system defined by where the
90
- derivatives are zero. We could use unknown variables for our nonlinear system
91
- (for direct compatibility with the above ODE code), or we can use non-tagged
92
- variables. Here we will show the latter. We write:
90
+ derivatives are zero. We use unknown variables for our nonlinear system.
93
91
94
92
``` julia
95
93
@Unknown x y z
You can’t perform that action at this time.
0 commit comments