Top |
Implementation of multiple precision spherical Bessel functions using the GNU MPFR library. This module utilizes binary splitting to compute the functions, employing both the Taylor series and asymptotic expansion methods. It ensures high precision, making it suitable for accurate computations in scenarios involving spherical Bessel functions.
void ncm_mpsf_sbessel (gulong l
,mpq_t q
,mpfr_ptr res
,mp_rnd_t rnd
);
Computes the Spherical Bessel function $j_\ell(x)$.
[skip]
void ncm_mpsf_sbessel_d (gulong l
,gdouble x
,mpfr_ptr res
,mp_rnd_t rnd
);
Computes the Spherical Bessel function $j_\ell(x)$.
[skip]