pub trait ConjMatVec: MatVec {
    fn conj_matvec(&self, vec: ArrayView1<'_, Self::A>) -> Array1<Self::A>;
}
Expand description

Trait describing the product of the conjugate adjoint of an operator with a vector

In the case that the operator is a matrix then this simply describes the action $A^Hx$, where $x$ is a vector and $A^H$ the complex conjugate adjoint of $A$.

Required Methods

Implementations on Foreign Types

Implementors