Trait concision::func::activate::Tanh

source ·
pub trait Tanh {
    type Output;

    // Required method
    fn tanh(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn tanh(&self) -> Self::Output

Implementations on Foreign Types§

source§

impl Tanh for f32

§

type Output = f32

source§

fn tanh(&self) -> <f32 as Tanh>::Output

source§

impl Tanh for f64

§

type Output = f64

source§

fn tanh(&self) -> <f64 as Tanh>::Output

source§

impl Tanh for Complex<f32>

§

type Output = Complex<f32>

source§

fn tanh(&self) -> <Complex<f32> as Tanh>::Output

source§

impl Tanh for Complex<f64>

§

type Output = Complex<f64>

source§

fn tanh(&self) -> <Complex<f64> as Tanh>::Output

source§

impl<'a> Tanh for &'a f32

§

type Output = f32

source§

fn tanh(&self) -> <&'a f32 as Tanh>::Output

source§

impl<'a> Tanh for &'a f64

§

type Output = f64

source§

fn tanh(&self) -> <&'a f64 as Tanh>::Output

source§

impl<'a> Tanh for &'a Complex<f32>

§

type Output = Complex<f32>

source§

fn tanh(&self) -> <&'a Complex<f32> as Tanh>::Output

source§

impl<'a> Tanh for &'a Complex<f64>

§

type Output = Complex<f64>

source§

fn tanh(&self) -> <&'a Complex<f64> as Tanh>::Output

source§

impl<A, S, D> Tanh for ArrayBase<S, D>
where A: Clone + Tanh, D: Dimension, S: Data<Elem = A>,

§

type Output = ArrayBase<OwnedRepr<<A as Tanh>::Output>, D>

source§

fn tanh(&self) -> <ArrayBase<S, D> as Tanh>::Output

Implementors§