1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
%perlcode %{
@EXPORT_OK = qw/
gsl_dht_alloc
gsl_dht_new
gsl_dht_init
gsl_dht_x_sample
gsl_dht_k_sample
gsl_dht_free
gsl_dht_apply
/;
%EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
=encoding utf8
__END__
=head1 NAME
Math::GSL::DHT - Discrete Hankel Transforms
=head1 SYNOPSIS
use Math::GSL::DHT qw/:all/;
=head1 DESCRIPTION
Here is a list of all the functions included in this module :
=over
=item C<gsl_dht_alloc($size)> - This function allocates a Discrete Hankel transform object of size $size.
=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.
=item C<gsl_dht_init($t, $nu, $xmax)> - This function initializes the transform $t for the given values of $nu and $xmax.
=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.
=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.
=item C<gsl_dht_free($t)> - This function frees the transform $t.
=item C<gsl_dht_apply>
=back
=head1 EXAMPLES
=head1 AUTHORS
Jonathan "Duke" Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2008-2024 Jonathan "Duke" Leto and Thierry Moisan
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
%}
|