Trait efd::ElementWiseOpt[][src]

pub trait ElementWiseOpt {
    type Out;
    fn square(&self) -> Self::Out;
fn sin(&self) -> Self::Out;
fn cos(&self) -> Self::Out;
fn abs(&self) -> Self::Out; }

Implement several element-wise operations for ndarrays.

Associated Types

Loading content...

Required methods

fn square(&self) -> Self::Out[src]

fn sin(&self) -> Self::Out[src]

fn cos(&self) -> Self::Out[src]

fn abs(&self) -> Self::Out[src]

Loading content...

Implementations on Foreign Types

impl<S, D> ElementWiseOpt for ArrayBase<S, D> where
    S: RawData<Elem = f64> + Data,
    D: Dimension
[src]

type Out = Array<f64, D>

Loading content...

Implementors

Loading content...