Skip to content

Commit 6ae1013

Browse files
committed
better default parameter
1 parent ec32858 commit 6ae1013

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/continuous_famous_systems.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2157,15 +2157,15 @@ given by
21572157
The parameter container has the parameters in the same order as stated in this
21582158
function's documentation string. Default values are:
21592159
```julia
2160-
A = 2.0551, B = −2.6, C = 0.4, D = 1.0, E = 0.4
2160+
A = 2.06, B = −2.6, C = 0.4, D = 1.0, E = 0.4
21612161
```
21622162
21632163
[^Zeng2024]:
21642164
Yanni Zeng, Pei Yu (2024)
21652165
Multistable states in a predator–prey model with generalized Holling type III functional response and a strong Allee effect.
21662166
Communications in Nonlinear Science and Numerical Simulation, Volume 131, 107846
21672167
"""
2168-
function tristable_predator_prey(u0 = [0.5, 0.5]; A = 2.0551, B = 2.6, C = 0.4, D = 1.0, E = 0.4)
2168+
function tristable_predator_prey(u0 = [0.5, 0.5]; A = 2.06, B = 2.6, C = 0.4, D = 1.0, E = 0.4)
21692169
function zeng_yu_2024(u, p, t)
21702170
A, B, C, D, E = p
21712171
x, y = u

0 commit comments

Comments
 (0)