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

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

Required methods

Implementations on Foreign Types

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

Implementors