[][src]Trait bio::utils::FastExp

pub trait FastExp<V: Float + MulAssign> {
    fn fastexp(&self) -> V;
}

This trait adds a fast approximation of exp to float types.

Required methods

fn fastexp(&self) -> V

Loading content...

Implementations on Foreign Types

impl FastExp<f64> for f64[src]

fn fastexp(&self) -> f64[src]

Fast approximation of exp() as shown by Kopczynski 2017: https://eldorado.tu-dortmund.de/bitstream/2003/36203/1/Dissertation_Kopczynski.pdf

Loading content...

Implementors

Loading content...