Skip to content

Commit 5f463aa

Browse files
Lots of tiny tweaks
1 parent c51e57a commit 5f463aa

File tree

10 files changed

+12
-436
lines changed

10 files changed

+12
-436
lines changed

docs/pages.jl

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ pages = Any["index.md",
66
"tutorials/rode_example.md",
77
"tutorials/dde_example.md",
88
"tutorials/dae_example.md",
9-
"tutorials/discrete_stochastic_example.md",
109
"tutorials/jump_diffusion.md",
11-
"tutorials/bvp_example.md",
12-
"tutorials/additional.md"],
10+
"tutorials/bvp_example.md"],
1311
"Examples" => Any["Beginner" => Any["examples/classical_physics.md",
1412
"examples/conditional_dosing.md",
1513
"examples/kepler_problem.md",
@@ -38,16 +36,14 @@ pages = Any["index.md",
3836
"types/rode_types.md",
3937
"types/dde_types.md",
4038
"types/sdde_types.md",
41-
"types/dae_types.md",
42-
"types/jump_types.md"],
39+
"types/dae_types.md"],
4340
"Solver Algorithms" => Any["solvers/discrete_solve.md",
4441
"solvers/ode_solve.md",
4542
"solvers/nonautonomous_linear_ode.md",
4643
"solvers/dynamical_solve.md",
4744
"solvers/split_ode_solve.md",
4845
"solvers/steady_state_solve.md",
4946
"solvers/bvp_solve.md",
50-
"solvers/jump_solve.md",
5147
"solvers/sde_solve.md",
5248
"solvers/sdae_solve.md",
5349
"solvers/rode_solve.md",

docs/src/examples/spiking_neural_systems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,4 +360,4 @@ plot(sol, vars=[5,6])
360360
Just changing those two time constants has changed the dynamics to short-term depression. This is still frequency dependent. Changing these parameters can generate a variety of different short-term dynamics.
361361

362362
## Summary
363-
That's it for now. Thanks for making it this far. If you want to learn more about neuronal dynamics, [this is a great resource](https://neuronaldynamics.epfl.ch/online/index.html). If you want to learn more about Julia check out the [official website](https://julialang.org/) and to learn more about the DifferentialEquations package you are in the right place, because this chapter is part of a [larger tutorial series about just that](https://github.com/SciML/SciMLTutorials.jl).
363+
That's it for now. Thanks for making it this far. If you want to learn more about neuronal dynamics, [this is a great resource](https://neuronaldynamics.epfl.ch/online/index.html).

docs/src/getting_started.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -225,13 +225,6 @@ using Plots
225225
plot(sol)
226226
```
227227

228-
If you are in Juno, this will plot to the plot pane. To open an interactive GUI
229-
(dependent on the backend), use the `gui` command:
230-
231-
```julia
232-
gui()
233-
```
234-
235228
The plot function can be formatted using [the attributes available in Plots.jl](https://juliaplots.github.io/).
236229
Additional DiffEq-specific controls are documented [at the plotting page](@ref plot).
237230

docs/src/index.md

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DifferentialEquations.jl: Scientific Machine Learning (SciML) Enabled Simulation and Estimation
1+
# DifferentialEquations.jl: Efficient Differential Equation Solving in Julia
22

33
This is a suite for numerically solving differential equations written in Julia
44
and available for use in Julia, Python, and R. The
@@ -94,7 +94,7 @@ be grateful if you could cite our work.
9494

9595
is necessary for any use of DifferentialEquations.jl or the packages that are
9696
maintained as part of its suite (OrdinaryDiffEq.jl, Sundials.jl, DiffEqDevTools.jl, etc.).
97-
Additionally, many of the solvers utilize novel algorithms, and if these algorithms
97+
Additionally, many of the solvers utilize novel algorithms, and if these algorithms
9898
are used we asked that you cite the methods. [Please see our citation page for guidelines](http://sciml.ai/citing.html).
9999

100100
## Getting Started: Installation And First Steps
@@ -194,21 +194,6 @@ installation of DifferentialEquations.jl will happen on the first invocation of
194194
Currently, use from R supported a subset of DifferentialEquations.jl which is documented
195195
[through CRAN](https://cran.r-project.org/web/packages/diffeqr/index.html).
196196

197-
### IJulia Notebook Tutorials
198-
199-
You can access extra tutorials supplied in the
200-
[DiffEqTutorials.jl repository](https://github.com/SciML/DiffEqTutorials.jl)
201-
via the commands:
202-
203-
```julia
204-
using Pkg
205-
pkg"add https://github.com/SciML/SciMLTutorials.jl"
206-
using SciMLTutorials
207-
SciMLTutorials.open_notebooks()
208-
```
209-
210-
Or you can view the webpages for the rendered tutorials at the links found in the repository.
211-
212197
### Video Tutorial
213198

214199
[![Video Tutorial](https://user-images.githubusercontent.com/1814174/36342812-bdfd0606-13b8-11e8-9eff-ff219de909e5.PNG)](https://youtu.be/KPEqYtEd-zY)
@@ -243,7 +228,7 @@ such as `OrdinaryDiffEq.jl` for the pure Julia ODE solvers, and decrease the com
243228
the rest (note: the interface is exactly the same, except using a solver other than those in OrdinaryDiffEq.jl
244229
will error). We recommend that downstream packages only rely on exactly the packages they need.
245230

246-
The other strategy is to use [PackageCompiler.jl](https://julialang.github.io/PackageCompiler.jl/dev/) to create
231+
The other strategy is to use [PackageCompiler.jl](https://julialang.github.io/PackageCompiler.jl/dev/) to create
247232
a system image that precompiles the whole package. To do this, one simply does:
248233

249234
```julia
@@ -253,7 +238,7 @@ PackageCompiler.create_sysimage([:DifferentialEquations,:Plots];replace_default=
253238

254239
Note that there are some drawbacks to adding a package in your system image, for example
255240
the package will never update until you manually rebuild the system image again. For more
256-
information on the consequences,
241+
information on the consequences,
257242
[see this portion of the PackageCompiler manual](https://julialang.github.io/PackageCompiler.jl/dev/sysimages/#Drawbacks-to-custom-sysimages-1)
258243

259244
### Basics
@@ -411,7 +396,7 @@ Pkg.status(;mode = PKGMODE_MANIFEST) # hide
411396
</details>
412397
```
413398
```@raw html
414-
You can also download the
399+
You can also download the
415400
<a href="
416401
```
417402
```@eval

docs/src/solvers/jump_solve.md

Lines changed: 0 additions & 58 deletions
This file was deleted.

docs/src/tutorials/additional.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/src/tutorials/discrete_stochastic_example.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/src/tutorials/jump_diffusion.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Jump Diffusion Equations
22

3-
See the [JumpProcesses.jl](https://docs.sciml.ai/JumpProcesses/stable/tutorials/jump_diffusion/) documentation for more information about jump diffusion.
3+
```@raw html
4+
<meta http-equiv="Refresh" content="0; url='https://docs.sciml.ai/JumpProcesses/stable/tutorials/jump_diffusion/'" />
5+
```

docs/src/tutorials/ode_example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
```@raw html
2-
<meta http-equiv="Refresh" content="0; url='../getting_started.html'" />
2+
<meta http-equiv="Refresh" content="0; url='../getting_started'" />
33
```

0 commit comments

Comments
 (0)