Trait easy_ml::numeric::extra::Exp[][src]

pub trait Exp {
    type Output;
    fn exp(self) -> Self::Output;
}

A type which can compute e^self.

This is implemented by f32 and f64 by value and by reference, as well as Traces and Records of these.

Associated Types

Loading content...

Required methods

fn exp(self) -> Self::Output[src]

Loading content...

Implementations on Foreign Types

impl Exp for f32[src]

type Output = f32

fn exp(self) -> Self::Output[src]

impl Exp for &f32[src]

type Output = f32

fn exp(self) -> Self::Output[src]

impl Exp for f64[src]

type Output = f64

fn exp(self) -> Self::Output[src]

impl Exp for &f64[src]

type Output = f64

fn exp(self) -> Self::Output[src]

Loading content...

Implementors

impl<'a, T: Numeric + Real + Primitive> Exp for &Record<'a, T> where
    &'t T: NumericRef<T> + RealRef<T>, 
[src]

Exponential, ie ex of a Record by reference.

type Output = Record<'a, T>

fn exp(self) -> Self::Output[src]

impl<'a, T: Numeric + Real + Primitive> Exp for Record<'a, T> where
    &'t T: NumericRef<T> + RealRef<T>, 
[src]

Operation for a record by value.

type Output = Record<'a, T>

fn exp(self) -> Self::Output[src]

impl<T: Numeric + Real + Primitive> Exp for &Trace<T> where
    &'a T: NumericRef<T> + RealRef<T>, 
[src]

Exponential, ie ex of a Trace by reference.

type Output = Trace<T>

fn exp(self) -> Self::Output[src]

impl<T: Numeric + Real + Primitive> Exp for Trace<T> where
    &'a T: NumericRef<T> + RealRef<T>, 
[src]

Operation for a trace by value.

type Output = Trace<T>

fn exp(self) -> Self::Output[src]

Loading content...