logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Math::GSL::DHT - Discrete Hankel Transforms

Authors

       Jonathan "Duke" Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>

Description

       Here is a list of all the functions included in this module :

       gsl_dht_alloc($size) - This function allocates a Discrete Hankel transform object of size $size.
       "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.
       "gsl_dht_init($t, $nu, $xmax)" - This function initializes the transform $t for the given values of $nu
       and $xmax.
       "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.
       "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.
       gsl_dht_free($t) - This function frees the transform $t.
       "gsl_dht_apply"

Examples

Name

       Math::GSL::DHT - Discrete Hankel Transforms

Synopsis

           use Math::GSL::DHT qw/:all/;

See Also