Jonathan Leto > Math-GSL-0.14 > Math::GSL::Sum

Download:
Math-GSL-0.14.tar.gz

Annotate this POD

CPAN RT

New  5
Open  4
View Bugs
Report a bug
Source   Latest Release: Math-GSL-0.20

NAME ^

Math::GSL::Sum - Functions to accelerate the convergence of a series using the Levin u-transform.

SYNOPSIS ^

    use Math::GSL::Sum qw/:all/;

    my $w = gsl_sum_levin_u_alloc(5);
    $values = [8,2,3,4,6];
    my ($status, $sum_accel, $abserr) = gsl_sum_levin_u_accel($values, 5, $w); 
    gsl_sum_levin_u_free($w);

    my $w2 = gsl_sum_levin_utrunc_alloc(5);
    my ($status2, $sum_accel2, $abserr_trunc) = gsl_sum_levin_utrunc_accel($values, 5, $w2);
    gsl_sum_levin_utrunc_free($w);

DESCRIPTION ^

Here is a list of all the functions included in this module :

AUTHORS ^

Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>

COPYRIGHT AND LICENSE ^

Copyright (C) 2008 Jonathan Leto and Thierry Moisan

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