pub trait ArrayInstanceLog<T, U>: ArrayInstance where
    T: HasAfEnum,
    U: HasAfEnum,
    ArrayExt<T>: ArrayInstanceNaturalLog<T>,
    ArrayExt<U>: ArrayInstanceNaturalLog<U>,
    ArrayExt<T::UnaryOutType>: Div<ArrayExt<U::UnaryOutType>>, 
{ fn log(
        &self,
        base: &ArrayExt<U>
    ) -> <ArrayExt<T::UnaryOutType> as Div<ArrayExt<U::UnaryOutType>>>::Output; }
Expand description

Defines a general logarithm.

Required Methods

Calculate the element-wise logarithm.

Implementors