Skip to content

Commit 1cd6630

Browse files
Update README.md
1 parent 517c8d1 commit 1cd6630

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ to manipulate.
2121
### Example: ODE
2222

2323
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
2525
variables, and parameters. Therefore we label them as follows:
2626

2727
```julia
@@ -87,9 +87,7 @@ f = ODEFunction(de)
8787

8888
We can also build nonlinear systems. Let's say we wanted to solve for the steady
8989
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.
9391

9492
```julia
9593
@Unknown x y z

0 commit comments

Comments
 (0)