pub trait BesselDual: DualNum<f64> {
    fn bessel_j0(self) -> Self { ... }
fn bessel_j1(self) -> Self { ... }
fn bessel_j2(self) -> Self { ... } }
Expand description

Implementation of bessel functions for double precision (hyper) dual numbers.

Provided methods

0th order bessel function of the first kind

1st order bessel function of the first kind

2nd order bessel function of the first kind

Implementors