mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Add Bessel functions to SpecialFunctions.
- Split SpecialFunctions files in to a separate BesselFunctions file.
In particular add:
- Modified bessel functions of the second kind k0, k1, k0e, k1e
- Bessel functions of the first kind j0, j1
- Bessel functions of the second kind y0, y1
This commit is contained in:
@@ -215,13 +215,26 @@ template<typename Scalar> struct scalar_digamma_op;
|
||||
template<typename Scalar> struct scalar_erf_op;
|
||||
template<typename Scalar> struct scalar_erfc_op;
|
||||
template<typename Scalar> struct scalar_ndtri_op;
|
||||
template<typename Scalar> struct scalar_i0e_op;
|
||||
template<typename Scalar> struct scalar_i1e_op;
|
||||
template<typename Scalar> struct scalar_igamma_op;
|
||||
template<typename Scalar> struct scalar_igammac_op;
|
||||
template<typename Scalar> struct scalar_zeta_op;
|
||||
template<typename Scalar> struct scalar_betainc_op;
|
||||
|
||||
// Bessel functions in SpecialFunctions module
|
||||
template<typename Scalar> struct scalar_bessel_i0_op;
|
||||
template<typename Scalar> struct scalar_bessel_i0e_op;
|
||||
template<typename Scalar> struct scalar_bessel_i1_op;
|
||||
template<typename Scalar> struct scalar_bessel_i1e_op;
|
||||
template<typename Scalar> struct scalar_bessel_j0_op;
|
||||
template<typename Scalar> struct scalar_bessel_y0_op;
|
||||
template<typename Scalar> struct scalar_bessel_j1_op;
|
||||
template<typename Scalar> struct scalar_bessel_y1_op;
|
||||
template<typename Scalar> struct scalar_bessel_k0_op;
|
||||
template<typename Scalar> struct scalar_bessel_k0e_op;
|
||||
template<typename Scalar> struct scalar_bessel_k1_op;
|
||||
template<typename Scalar> struct scalar_bessel_k1e_op;
|
||||
|
||||
|
||||
} // end namespace internal
|
||||
|
||||
struct IOFormat;
|
||||
|
||||
Reference in New Issue
Block a user