Trait 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

Source§

type Output = f32

Source§

fn tanh(self) -> Self::Output

Source§

impl Tanh for f64

Source§

type Output = f64

Source§

fn tanh(self) -> Self::Output

Source§

impl Tanh for Complex<f32>

Source§

type Output = Complex<f32>

Source§

fn tanh(self) -> Self::Output

Source§

impl Tanh for Complex<f64>

Source§

type Output = Complex<f64>

Source§

fn tanh(self) -> Self::Output

Source§

impl<'a> Tanh for &'a f32

Source§

type Output = f32

Source§

fn tanh(self) -> Self::Output

Source§

impl<'a> Tanh for &'a f64

Source§

type Output = f64

Source§

fn tanh(self) -> Self::Output

Source§

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

Source§

type Output = Complex<f32>

Source§

fn tanh(self) -> Self::Output

Source§

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

Source§

type Output = Complex<f64>

Source§

fn tanh(self) -> Self::Output

Source§

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

Source§

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

Source§

fn tanh(self) -> Self::Output

Source§

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

Source§

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

Source§

fn tanh(self) -> Self::Output

Implementors§