pub trait Exp<T: Num> {
    // Required method
    fn exp(&self) -> Matrix<OwnedMem<T>, DimDyn>;
}

Required Methods§

source

fn exp(&self) -> Matrix<OwnedMem<T>, DimDyn>

Implementors§

source§

impl<T: Num, M: ToViewMemory<Item = T>> Exp<T> for Matrix<M, DimDyn>