Skip to content

Commit

Permalink
Do not use link reference definition
Browse files Browse the repository at this point in the history
as it's not supported by Julia's Markdown parser
  • Loading branch information
tkf committed Mar 22, 2019
1 parent 0b102ab commit b707566
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
12 changes: 7 additions & 5 deletions docs/src/examples/calcium.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ Calcium channel model taken from PyDSTool example. See:
* [Tutorial - PyDSTool Wiki](http://www2.gsu.edu/~matrhc/Tutorial.html)
* [Bifurcation Analysis · DifferentialEquations.jl](http://docs.juliadiffeq.org/latest/analysis/bifurcation.html)

Use [`QuickTypes.@qstruct_fp`][QuickTypes] to define model parameter:
Use
[`QuickTypes.@qstruct_fp`](https://github.com/cstjean/QuickTypes.jl)
to define model parameter:

```@example calcium
using QuickTypes: @qstruct_fp
Expand All @@ -25,7 +27,8 @@ using QuickTypes: @qstruct_fp
nothing # hide
```

Define the model as in [DifferentialEquations.jl][ODEProblem]:
Define the model as in
[DifferentialEquations.jl](http://docs.juliadiffeq.org/latest/tutorials/ode_example.html):

```@example calcium
using Parameters: @unpack
Expand All @@ -40,7 +43,8 @@ function f(u, p::CalciumParam, t)
end
```

Create an [`ODEProblem`][ODEProblem]:
Create an
[`ODEProblem`](http://docs.juliadiffeq.org/latest/tutorials/ode_example.html):

```@example calcium
using DiffEqBase: ODEProblem
Expand Down Expand Up @@ -116,6 +120,4 @@ savefig(plt2, "calcium-2.png"); nothing # hide
![](calcium-2.png)


[QuickTypes]: https://github.com/cstjean/QuickTypes.jl

[ODEProblem]: http://docs.juliadiffeq.org/latest/tutorials/ode_example.html
7 changes: 3 additions & 4 deletions docs/src/examples/morris_lecar.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Modified Morris-Lecar model

Modified Morris-Lecar model from [Dhooge, Govaerts, Kuznetsov (2003)]:
Modified Morris-Lecar model from
[Dhooge, Govaerts, Kuznetsov (2003)](https://doi.org/10.1007/3-540-44860-8_72):

* [Dhooge, Govaerts, Kuznetsov (2003)].
* Dhooge, Govaerts, Kuznetsov (2003).
Numerical Continuation of Fold Bifurcations of Limit Cycles in MATCONT

[Dhooge, Govaerts, Kuznetsov (2003)]: https://doi.org/10.1007/3-540-44860-8_72

```@example morris_lecar
using Bifurcations
using Bifurcations: special_intervals
Expand Down
4 changes: 1 addition & 3 deletions docs/src/examples/van_der_pol.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ using Plots
using OrdinaryDiffEq: Tsit5, remake
```

Create an [`ODEProblem`][ODEProblem] and solve it:

[ODEProblem]: http://docs.juliadiffeq.org/latest/tutorials/ode_example.html
Create an [`ODEProblem`](http://docs.juliadiffeq.org/latest/tutorials/ode_example.html) and solve it:

```@example van_der_pol
ode = remake(
Expand Down

0 comments on commit b707566

Please sign in to comment.