Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Some fixes to pass tests
  • Loading branch information
JJ committed Oct 7, 2018
1 parent 603ff5c commit 90ce9a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/Language/math.pod6
Expand Up @@ -255,8 +255,8 @@ equations.
For this example we are going to use
L<C<Math::Model>|https://github.com/moritz/Math-Model> because its
useful sintaxis, but remember that this module requires
L<C<Math::RungeKutta>|https://github.com/moritz/Math-RungeKutta> as well.
useful sintaxis, but remember that this module requires
L<C<Math::RungeKutta>|https://github.com/moritz/Math-RungeKutta> as well.
Simply install them with I<zef> before using these examples.
In the future it should be a nice idea to add other modules.
Expand Down Expand Up @@ -455,7 +455,7 @@ my $m = Math::Model.new(
velocity_x => { $:growth_constant * $:x *($:x/$:a -1)*(1- $:x/$:k) },
growth_constant => { 0.7 }, # basal growth rate
k => { 100 }, # carrying capacity
a => { 15 }, # critical point
a => { 15 }, # critical point
},
initials => {
x => 15,
Expand Down

0 comments on commit 90ce9a3

Please sign in to comment.