Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #87 from pjpmarques/master
Browse files Browse the repository at this point in the history
Contributing with examples
  • Loading branch information
ivarne committed Mar 3, 2016
2 parents f89d5f3 + 3c74c18 commit c12fc36
Show file tree
Hide file tree
Showing 5 changed files with 711 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ Additionally, `ode23s` solver supports

There are also fixed step Runge-Kutta and Rosenbrock solvers available.

# Examples
The examples directory contain a few notebooks that show how to get started. You can also see them here:
* [Simple differential equation](http://nbviewer.jupyter.org/github/JuliaLang/ODE.jl/blob/master/examples/Simple_Differential_Equation.ipynb)
* [Lorenz Attractor](http://nbviewer.jupyter.org/github/JuliaLang/ODE.jl/blob/master/examples/Lorenz_Attractor.ipynb)
* [Terminal Velocity](http://nbviewer.jupyter.org/github/JuliaLang/ODE.jl/blob/master/examples/Terminal_Velocity.ipynb)

# Need something long-term reliable right now?

See [the Sundials.jl package](https://github.com/julialang/sundials.jl), which provides wrappers for the excellent Sundials ODE solver library.
210 changes: 210 additions & 0 deletions examples/Lorenz_Attractor.ipynb

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Examples

This directory contains a few examples. For running them you will need to have [Jupyter](http://jupyter.org/) installed and the following libraries:
* [ODE.jl](https://github.com/JuliaLang/ODE.jl)
* [PyPlot](https://github.com/stevengj/PyPlot.jl)

You can also directly see the result without installing anything. Just follow the links:
* [Simple differential equation](http://nbviewer.jupyter.org/github/JuliaLang/ODE.jl/blob/master/examples/Simple_Differential_Equation.ipynb)
* [Lorenz Attractor](http://nbviewer.jupyter.org/github/JuliaLang/ODE.jl/blob/master/examples/Lorenz_Attractor.ipynb)
* [Terminal Velocity](http://nbviewer.jupyter.org/github/JuliaLang/ODE.jl/blob/master/examples/Terminal_Velocity.ipynb)
193 changes: 193 additions & 0 deletions examples/Simple_Differential_Equation.ipynb

Large diffs are not rendered by default.

292 changes: 292 additions & 0 deletions examples/Terminal_Velocity.ipynb

Large diffs are not rendered by default.

0 comments on commit c12fc36

Please sign in to comment.