The discrete Hankel transform acts on a vector of sampled data, where the samples are assumed to have been taken at points related to the zeroes of a Bessel function of fixed order; compare this to the case of the discrete Fourier transform, where samples are taken at points related to the zeroes of the sine or cosine function.
Specifically, let @math{f(t)} be a function on the unit interval. Then the finite @math{\nu}-Hankel transform of @math{f(t)} is defined to be the set of numbers @math{g_m} given by
so that
Suppose that @math{f} is band-limited in the sense that @math{g_m=0} for @math{m > M}. Then we have the following fundamental sampling theorem.
It is this discrete expression which defines the discrete Hankel
transform. The kernel in the summation above defines the matrix of the
@math{\nu}-Hankel transform of size @math{M-1}. The coefficients of
this matrix, being dependent on @math{\nu} and @math{M}, must be
precomputed and stored; the gsl_dht
object encapsulates this
data. The allocation function gsl_dht_alloc
returns a
gsl_dht
object which must be properly initialized with
gsl_dht_init
before it can be used to perform transforms on data
sample vectors, for fixed @math{\nu} and @math{M}, using the
gsl_dht_apply
function. The implementation allows a scaling of
the fundamental interval, for convenience, so that one take assume the
function is defined on the interval @math{[0,X]}, rather than the unit
interval.
Notice that by assumption @math{f(t)} vanishes at the endpoints of the interval, consistent with the inversion formula and the sampling formula given above. Therefore, this transform corresponds to an orthogonal expansion in eigenfunctions of the Dirichlet problem for the Bessel differential equation.