pub trait MatMul<Rhs: MatrixKind>: MatrixKind {
    type Output: MatrixKind;

    // Required method
    fn mat_mul<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>>(
        lhs: <Self as MatrixKind>::Ref<'_, LhsE>,
        rhs: <Rhs as MatrixKind>::Ref<'_, RhsE>
    ) -> <Self::Output as MatrixKind>::Own<E>;
}

Required Associated Types§

Required Methods§

source

fn mat_mul<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>>( lhs: <Self as MatrixKind>::Ref<'_, LhsE>, rhs: <Rhs as MatrixKind>::Ref<'_, RhsE> ) -> <Self::Output as MatrixKind>::Own<E>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl MatMul<Dense> for Dense

source§

impl MatMul<Dense> for DenseRow

source§

impl MatMul<Dense> for Diag

source§

impl MatMul<Dense> for Scale

source§

impl MatMul<DenseCol> for Dense

source§

impl MatMul<DenseCol> for DenseRow

source§

impl MatMul<DenseCol> for Diag

source§

impl MatMul<DenseCol> for Scale

source§

impl MatMul<DenseRow> for DenseCol

source§

impl MatMul<DenseRow> for Scale

source§

impl MatMul<Diag> for Dense

source§

impl MatMul<Diag> for DenseRow

source§

impl MatMul<Diag> for Diag

§

type Output = Diag

source§

impl MatMul<Scale> for Dense

source§

impl MatMul<Scale> for DenseCol

source§

impl MatMul<Scale> for DenseRow

source§

impl MatMul<Scale> for Scale

source§

impl<I: Index> MatMul<Dense> for Perm<I>

source§

impl<I: Index> MatMul<Dense> for SparseColMat<I>

source§

impl<I: Index> MatMul<Dense> for SparseRowMat<I>

source§

impl<I: Index> MatMul<DenseCol> for Perm<I>

source§

impl<I: Index> MatMul<DenseCol> for SparseColMat<I>

source§

impl<I: Index> MatMul<DenseCol> for SparseRowMat<I>

source§

impl<I: Index> MatMul<Perm<I>> for Dense

source§

impl<I: Index> MatMul<Perm<I>> for DenseRow

source§

impl<I: Index> MatMul<Perm<I>> for Perm<I>

§

type Output = Perm<I>

source§

impl<I: Index> MatMul<SparseColMat<I>> for Dense

source§

impl<I: Index> MatMul<SparseColMat<I>> for DenseRow

source§

impl<I: Index> MatMul<SparseRowMat<I>> for Dense

source§

impl<I: Index> MatMul<SparseRowMat<I>> for DenseRow