BesselDual

Trait 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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§