Comment out some more free() calls, which need to be turned on per-subsystem to weed...
[Math-GSL.git] / pod / DHT.pod
blob6f751cfdf523ec3d603b3cad3bec3cd13de32c19
1 %perlcode %{
2 @EXPORT_OK = qw/
3                gsl_dht_alloc 
4                gsl_dht_new 
5                gsl_dht_init 
6                gsl_dht_x_sample 
7                gsl_dht_k_sample 
8                gsl_dht_free 
9                gsl_dht_apply 
10              /;
11 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
13 __END__
15 =head1 NAME
17 Math::GSL::DHT - Discrete Hankel Transforms
19 =head1 SYNOPSIS
21     use Math::GSL::DHT qw/:all/;
23 =head1 DESCRIPTION
25 Here is a list of all the functions included in this module :
27 =over
29 =item C<gsl_dht_alloc($size)> - This function allocates a Discrete Hankel transform object of size $size.  
31 =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. 
33 =item C<gsl_dht_init($t, $nu, $xmax)> - This function initializes the transform $t for the given values of $nu and $xmax.  
35 =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.  
37 =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.  
39 =item C<gsl_dht_free($t)> - This function frees the transform $t.  
41 =item C<gsl_dht_apply> 
43 =back
45 =head1 EXAMPLES
47 =head1 AUTHORS
49 Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
51 =head1 COPYRIGHT AND LICENSE
53 Copyright (C) 2008-2009 Jonathan Leto and Thierry Moisan
55 This program is free software; you can redistribute it and/or modify it
56 under the same terms as Perl itself.
58 =cut