pub trait FnsOps<T> {
    fn exp(&self, x: &Matrix<'_, T>) -> Matrix<'_, T>;
    fn ln(&self, x: &Matrix<'_, T>) -> Matrix<'_, T>;
    fn neg(&self, x: &Matrix<'_, T>) -> Matrix<'_, T>;
    fn powf(&self, x: &Matrix<'_, T>, rhs: T) -> Matrix<'_, T>;
    fn powi(&self, x: &Matrix<'_, T>, rhs: i32) -> Matrix<'_, T>;
}

Required Methods

Implementations on Foreign Types

Implementors