pub trait MatPow<Rhs = Self> {
    type Output;
    // Required method
    fn matpow(&self, rhs: Rhs) -> Self::Output;
}Expand description
The MatPow trait defines an interface for computing the exponentiation of a matrix.
pub trait MatPow<Rhs = Self> {
    type Output;
    // Required method
    fn matpow(&self, rhs: Rhs) -> Self::Output;
}The MatPow trait defines an interface for computing the exponentiation of a matrix.