Trait concision_core::func::activate::nl::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 Sigmoid for f32

§

type Output = f32

source§

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

source§

impl Sigmoid for f64

§

type Output = f64

source§

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

source§

impl Sigmoid for Complex<f32>

§

type Output = Complex<f32>

source§

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

source§

impl Sigmoid for Complex<f64>

§

type Output = Complex<f64>

source§

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

source§

impl<'a> Sigmoid for &'a f32

§

type Output = f32

source§

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

source§

impl<'a> Sigmoid for &'a f64

§

type Output = f64

source§

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

source§

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

§

type Output = Complex<f32>

source§

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

source§

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

§

type Output = Complex<f64>

source§

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

source§

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

§

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

source§

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

Implementors§