[][src]Trait mathru::elementary::Exponential

pub trait Exponential {
    pub fn e() -> Self;
pub fn exp(self) -> Self;
pub fn ln(self) -> Self; }

Exponential function and its inverse

https://en.wikipedia.org/wiki/Exponential_function

Required methods

pub fn e() -> Self[src]

Euler's number

pub fn exp(self) -> Self[src]

Exponential function

pub fn ln(self) -> Self[src]

Natural logiarithm function

Loading content...

Implementations on Foreign Types

impl Exponential for f32[src]

pub fn e() -> Self[src]

pub fn exp(self) -> Self[src]

Exponential function

pub fn ln(self) -> Self[src]

Logiarithm function

impl Exponential for f64[src]

pub fn e() -> Self[src]

pub fn exp(self) -> Self[src]

Exponential function

pub fn ln(self) -> Self[src]

Logiarithm function

Loading content...

Implementors

Loading content...