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 Sigmoid for f32

Source§

type Output = f32

Source§

fn sigmoid(self) -> Self::Output

Source§

impl Sigmoid for f64

Source§

type Output = f64

Source§

fn sigmoid(self) -> Self::Output

Source§

impl Sigmoid for Complex<f32>

Source§

impl Sigmoid for Complex<f64>

Source§

impl<'a> Sigmoid for &'a f32

Source§

type Output = f32

Source§

fn sigmoid(self) -> Self::Output

Source§

impl<'a> Sigmoid for &'a f64

Source§

type Output = f64

Source§

fn sigmoid(self) -> Self::Output

Source§

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

Source§

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

Source§

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

Source§

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

Implementors§