Apply nan/inf handling patch from Sisyphus
[Math-GSL.git] / DHT.i
blob8280f351b4c56757872ac10a8b3937233cd48a9a
1 %module "Math::GSL::DHT"
2 %include "typemaps.i"
3 %include "gsl_typemaps.i"
5 %{
6 #include "gsl/gsl_dht.h"
7 %}
9 %include "gsl/gsl_dht.h"
11 %perlcode %{
12 @EXPORT_OK = qw/
13 gsl_dht_alloc
14 gsl_dht_new
15 gsl_dht_init
16 gsl_dht_x_sample
17 gsl_dht_k_sample
18 gsl_dht_free
19 gsl_dht_apply
21 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
23 __END__
25 =head1 NAME
27 Math::GSL::DHT - Functions for performing Discrete Hankel Transforms
29 =head1 SYNOPSIS
31 use Math::GSL::DHT qw/:all/;
33 =head1 DESCRIPTION
35 Here is a list of all the functions included in this module :
37 =over
39 =item C<gsl_dht_alloc($size)> - This function allocates a Discrete Hankel transform object of size $size.
41 =item C<gsl_dht_new($size, $nu, $xmax)> - This function allocates a Discrete Hankel transform object of size $size and initializes it for the given values of $nu and $xmax.
43 =item C<gsl_dht_init($t, $nu, $xmax)> - This function initializes the transform $t for the given values of $nu and $xmax.
45 =item C<gsl_dht_x_sample($t, $n)> - This function returns the value of the $n-th sample point in the unit interval, (j_{\nu,n+1}/j_{\nu,M}) X. These are the points where the function f(t) is assumed to be sampled.
47 =item C<gsl_dht_k_sample($t, $n)> - This function returns the value of the $n-th sample point in “k-space”, j_{\nu,n+1}/X.
49 =item C<gsl_dht_free($t)> - This function frees the transform $t.
51 =item C<gsl_dht_apply>
53 =back
55 =head1 EXAMPLES
57 =head1 AUTHORS
59 Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
61 =head1 COPYRIGHT AND LICENSE
63 Copyright (C) 2008 Jonathan Leto and Thierry Moisan
65 This program is free software; you can redistribute it and/or modify it
66 under the same terms as Perl itself.
68 =cut