Math::GSL::Diff(3pm) | User Contributed Perl Documentation | Math::GSL::Diff(3pm) |
Math::GSL::Diff - Numerical differentiation routines
use Math::GSL::Diff qw/:all/;
Here is a list of all the functions included in this module :
my ($success, $result, $error) = gsl_diff_central(sub { return $_[0] ** 1.5 }, 2.0);
my ($success, $result, $error) = gsl_diff_backward(sub { return $_[0] ** 1.5 }, 0.0);
my ($success, $result, $error) = gsl_diff_forward(sub { return $_[0] ** 1.5 }, 1.0);
Jonathan "Duke" Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
Copyright (C) 2008-2021 Jonathan "Duke" Leto and Thierry Moisan
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2022-10-20 | perl v5.36.0 |