The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

PerlGSL::Integration::MultiDim - A Perlish Interface to the GSL Monte Carlo Integration Library

SYNOPSIS

 use PerlGSL::Integration::MultiDim qw/int_multi/;
 my ($piby4, $error) = 
   int_multi( sub { ($_[0]**2 + $_[1]**2) < 1 }, [0,0], [1,1], {calls => 1e6});

DESCRIPTION

This module is an interface to the GSL's Monte Carlo multidimensional numerical integration routines. So far only the MISER routine is implemented, the VEGAS routine is planned.

FUNCTIONS

No functions are exported by default.

int_multi

This is the main interface provided by the module. It takes three required arguments and an (optional) options hash. The first argument is a subroutine reference defining the integrand. The next two are array references defining the lower and upper bound of integration; these should each be of the same length and in the same order as the dimesions of the system (and thus the number of arguments taken by the subroutine reference).

The options hash reference accepts the following keys:

  • calls - The number of points sampled in the function space. The default is 500000.

In scalar context the result is returned, in list context the result and the standard deviation (error) are returned.

INSTALLATION REQUIREMENTS

This module needs the GSL library installed and available. The PERLGSL_LIBS environment variable may be used to pass the --libs linker flags; if this is not specified, the command gsl-config --libs is executed to find them. Future plans include using an Alien module to provide the GSL in a more CPAN-friendly manner.

SEE ALSO

SOURCE REPOSITORY

http://github.com/jberger/PerlGSL-Integration-MultiDim

AUTHOR

Joel Berger, <joel.a.berger@gmail.com>

COPYRIGHT AND LICENSE

Copyright (C) 2012 by Joel Berger

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The GSL is licensed under the terms of the GNU General Public License (GPL)