Skip to content

Commit f74ea57

Browse files
authored
fix doc string for towel() map (#36)
The doc string for the `towel()` map has `(1+2z_n)` instead of `(1-2z_n)` as is implemented in the function body and the [referenced system](https://en.wikipedia.org/wiki/Hyperchaos#Mathematical_examples)
1 parent 4b9bd6e commit f74ea57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/discrete_famous_systems.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ towel(u0 = [0.085, -0.121, 0.075])
55
```math
66
\\begin{aligned}
77
x_{n+1} &= 3.8 x_n (1-x_n) -0.05 (y_n +0.35) (1-2z_n) \\\\
8-
y_{n+1} &= 0.1 \\left[ \\left( y_n +0.35 \\right)\\left( 1+2z_n\\right) -1 \\right]
8+
y_{n+1} &= 0.1 \\left[ \\left( y_n +0.35 \\right)\\left( 1-2z_n\\right) -1 \\right]
99
\\left( 1 -1.9 x_n \\right) \\\\
1010
z_{n+1} &= 3.78 z_n (1-z_n) + b y_n
1111
\\end{aligned}
@@ -579,4 +579,4 @@ end
579579
dx = mod(x + ν*(1 + μ*y) + ϵ*ν*μ*cos2pi(x), 1.0)
580580
dy = exp(-r)*(y + ϵ*cos2pi(x))
581581
return SVector{2}(dx, dy)
582-
end
582+
end

0 commit comments

Comments
 (0)