Trait Sigmoid

Source
pub trait Sigmoid {
    type Output;

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

Required Associated Types§

Required Methods§

Source

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

Implementations on Foreign Types§

Source§

impl<A, S, D> Sigmoid for ArrayBase<S, D>
where A: Float + 'static, S: Data<Elem = A>, D: Dimension,

Source§

type Output = ArrayBase<OwnedRepr<A>, D>

Source§

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

Implementors§