mathieu functions do not want to work
[Math-GSL.git] / pod / Heapsort.pod
blob4a793f17aa7c68075b95679f3c21ab647b4f14b8
1 %perlcode %{
2 @EXPORT_OK = qw/
3                gsl_heapsort 
4                gsl_heapsort_index 
5              /;
6 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
8 __END__
10 =head1 NAME
12 Math::GSL::Heapsort - Functions for sorting data, both directly and indirectly (using an index)
14 =head1 SYNOPSIS
16 This module is not yet implemented. Patches Welcome!
18     use Math::GSL::Heapsort qw /:all/;
20 =head1 DESCRIPTION
22 Here is a list of all the functions in this module :
24 =over
26 =item * gsl_heapsort 
28 =item * gsl_heapsort_index 
30 =back
32 For more informations on the functions, we refer you to the GSL offcial
33 documentation: L<http://www.gnu.org/software/gsl/manual/html_node/>
35  Tip : search on google: site:http://www.gnu.org/software/gsl/manual/html_node/ name_of_the_function_you_want
38 =head1 AUTHORS
40 Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
42 =head1 COPYRIGHT AND LICENSE
44 Copyright (C) 2008 Jonathan Leto and Thierry Moisan
46 This program is free software; you can redistribute it and/or modify it
47 under the same terms as Perl itself.
49 =cut