[][src]Trait maths_traits::analysis::real::Exponential

pub trait Exponential: Field {
    fn pow(self, power: Self) -> Self;
fn exp(self) -> Self;
fn log(self, base: Self) -> Self;
fn ln(self) -> Self; fn exp2(self) -> Self { ... }
fn exp10(self) -> Self { ... }
fn log2(self) -> Self { ... }
fn log10(self) -> Self { ... }
fn root(self, index: Self) -> Self { ... }
fn sqrt(self) -> Self { ... }
fn cbrt(self) -> Self { ... }
fn ln_1p(self) -> Self { ... }
fn exp_m1(self) -> Self { ... } }

Required methods

fn pow(self, power: Self) -> Self

fn exp(self) -> Self

fn log(self, base: Self) -> Self

fn ln(self) -> Self

Loading content...

Provided methods

fn exp2(self) -> Self

fn exp10(self) -> Self

fn log2(self) -> Self

fn log10(self) -> Self

fn root(self, index: Self) -> Self

fn sqrt(self) -> Self

fn cbrt(self) -> Self

fn ln_1p(self) -> Self

fn exp_m1(self) -> Self

Loading content...

Implementations on Foreign Types

impl Exponential for f32[src]

impl Exponential for f64[src]

Loading content...

Implementors

Loading content...