Secant function call documentation
Brought to you by:
erwan_lemonnier
Hello,
thanks for the very useful module !
There is a minor error in the secant function call provided as an example on line 652 of polynom.pm.
650 Same with the secant method:
651
652 eval { $r = $p1->secant(p0 => 0, p2 => 2, precision => 0.001); };
It should be "p1 => 2" instead of "p2 => 2" as follows.
"eval { $r = $p1->secant(p0 => 0, p1 => 2, precision => 0.001); };"
Vincent