Trait concision_core::Matpow

source ·
pub trait Matpow<Rhs = Self> {
    type Output;

    // Required method
    fn pow(&self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn pow(&self, rhs: Rhs) -> Self::Output

Implementations on Foreign Types§

source§

impl<A, S> Matpow<i32> for ArrayBase<S, Ix2>
where A: Copy + Num + 'static, S: Data<Elem = A>, ArrayBase<S, Ix2>: Clone + Dot<ArrayBase<S, Ix2>, Output = Array<A, Ix2>>,

§

type Output = ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>

source§

fn pow(&self, rhs: i32) -> Self::Output

Implementors§