pub trait Matpow<Rhs = Self> {
type Output;
// Required method
fn pow(&self, rhs: Rhs) -> Self::Output;
}Expand description
a trait denoting objects capable of matrix exponentiation
pub trait Matpow<Rhs = Self> {
type Output;
// Required method
fn pow(&self, rhs: Rhs) -> Self::Output;
}a trait denoting objects capable of matrix exponentiation