pub trait MatrixSub<L, R> {
    // Required method
    fn sub(&mut self, lhs: L, rhs: R);
}

Required Methods§

source

fn sub(&mut self, lhs: L, rhs: R)

Implementors§

source§

impl<T, D1, D2, D3, M1, M2, M3> MatrixSub<Matrix<M1, D1>, Matrix<M2, D2>> for Matrix<M3, D3>
where T: Num, D1: DimTrait, D2: DimTrait, D3: DimTrait, M1: ToViewMemory<Item = T>, M2: ToViewMemory<Item = T>, M3: ToViewMutMemory<Item = T>,

source§

impl<T, D1, D2, M1, M2> MatrixSub<Matrix<M1, D1>, T> for Matrix<M2, D2>
where T: Num, D1: DimTrait, D2: DimTrait, M1: ToViewMemory<Item = T>, M2: ToViewMutMemory<Item = T>,

source§

impl<T, D1, D2, M1, M2> MatrixSub<T, Matrix<M1, D1>> for Matrix<M2, D2>
where T: Num, D1: DimTrait, D2: DimTrait, M1: ToViewMemory<Item = T>, M2: ToViewMutMemory<Item = T>,