Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions lib/ODEProblemLibrary/src/strange_attractors.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ eqs = [D(x) ~ sin(y) - b * x,
Thomas' cyclically symmetric attractor equations

```math
$(latexify(thomas))
$(latexify(thomas; mult_symbol=""))
```

[Reference](https://www.worldscientific.com/doi/abs/10.1142/S0218127499001383)
Expand All @@ -39,7 +39,7 @@ eqs = [D(x) ~ σ * (y - x),
Lorenz equations

```math
$(latexify(lorenz))
$(latexify(lorenz; mult_symbol=""))
```

[Reference](https://journals.ametsoc.org/view/journals/atsc/20/2/1520-0469_1963_020_0130_dnf_2_0_co_2.xml)
Expand All @@ -62,7 +62,7 @@ eqs = [D(x) ~ (z - b) * x - d * y,
Aizawa equations

```math
$(latexify(aizawa))
$(latexify(aizawa; mult_symbol=""))
```

[Reference](https://journals.ametsoc.org/view/journals/atsc/20/2/1520-0469_1963_020_0130_dnf_2_0_co_2.xml)
Expand All @@ -84,7 +84,7 @@ eqs = [D(x) ~ y - a * x + b * y * z,
Dadras equations

```math
$(latexify(dadras))
$(latexify(dadras; mult_symbol=""))
```

[Reference](https://www.sciencedirect.com/science/article/abs/pii/S0375960109009591)
Expand All @@ -106,7 +106,7 @@ eqs = [D(x) ~ a * (y - x),
chen equations

```math
$(latexify(chen))
$(latexify(chen; mult_symbol=""))
```

[Reference](https://www.worldscientific.com/doi/abs/10.1142/S0218127499001024)
Expand All @@ -128,7 +128,7 @@ eqs = [D(x) ~ -(y + z),
rossler equations

```math
$(latexify(rossler))
$(latexify(rossler; mult_symbol=""))
```

[Reference](https://www.sciencedirect.com/science/article/abs/pii/0375960176901018)
Expand All @@ -151,7 +151,7 @@ eqs = [D(x) ~ y * (z - 1 + x^2) + b * x,
rabinovich_fabrikant equations

```math
$(latexify(rabinovich_fabrikant))
$(latexify(rabinovich_fabrikant; mult_symbol=""))
```

[Reference](https://en.wikipedia.org/wiki/Rabinovich%E2%80%93Fabrikant_equations)
Expand All @@ -173,7 +173,7 @@ eqs = [D(x) ~ y + a * x * y + x * z,
sprott equations

```math
$(latexify(sprott))
$(latexify(sprott; mult_symbol=""))
```

[Reference](https://sprott.physics.wisc.edu/pubs/paper423.pdf)
Expand All @@ -195,7 +195,7 @@ eqs = [D(x) ~ y - a * x^3 + b * x^2 - z + i,
hindmarsh_rose equations

```math
$(latexify(hindmarsh_rose))
$(latexify(hindmarsh_rose; mult_symbol=""))
```

[Reference](https://en.wikipedia.org/wiki/Hindmarsh%E2%80%93Rose_model)
Expand Down
Loading