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.
2121### Example: ODE
2222
2323Let'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
2525variables, and parameters. Therefore we label them as follows:
2626
2727``` julia
@@ -87,9 +87,7 @@ f = ODEFunction(de)
8787
8888We can also build nonlinear systems. Let's say we wanted to solve for the steady
8989state 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.
9391
9492``` julia
9593@Unknown x y z
You can’t perform that action at this time.
0 commit comments