Commenting out a failing CBLAS test and adding one who pass
[Math-GSL.git] / DFT.i
blob1abf7b3f63d7b360b20afb185c6b49628f8d1139
1 %module DFT
2 %{
3 #include "/usr/local/include/gsl/gsl_dft_complex.h"
4 %}
6 %include "/usr/local/include/gsl/gsl_dft_complex.h"
9 %perlcode %{
10 @EXPORT_OK = qw/
11 gsl_dft_complex_forward
12 gsl_dft_complex_backward
13 gsl_dft_complex_inverse
14 gsl_dft_complex_transform
16 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
18 __END__
20 =head1 NAME
22 Math::GSL::DFT
24 =head1 SYPNOPSIS
26 use Math::GSL::DFT qw/:all/;
28 =head1 DESCRIPTION
30 Here is a list of all the functions included in this module :
32 =over
34 =item C<gsl_dft_complex_forward>
36 =item C<gsl_dft_complex_backward>
38 =item C<gsl_dft_complex_inverse>
40 =item C<gsl_dft_complex_transform>
42 =item For more informations on the functions, we refer you to the GSL offcial documentation: L<http://www.gnu.org/software/gsl/manual/html_node/>
44 =item Tip : search on google: site:http://www.gnu.org/software/gsl/manual/html_node/ name_of_the_function_you_want
46 =back
48 =head1 EXAMPLES
50 =head1 AUTHOR
52 Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
54 =head1 COPYRIGHT AND LICENSE
56 Copyright (C) 2008 Jonathan Leto and Thierry Moisan
58 This program is free software; you can redistribute it and/or modify it
59 under the same terms as Perl itself.
61 =cut