Trait num_dual::BesselDual

source ·
pub trait BesselDual: DualNum<f64> + Copy {
    // Provided methods
    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§

source

fn bessel_j0(self) -> Self

0th order bessel function of the first kind

source

fn bessel_j1(self) -> Self

1st order bessel function of the first kind

source

fn bessel_j2(self) -> Self

2nd order bessel function of the first kind

Implementors§