pub trait ConjBy {
    fn conjugate_by(&self, op: &ArrayView2<'_, C64>) -> Self;
}
Expand description

Represent types that can be conjugated by 2-dimensional arrays; that is, as $UXU^{\dagger}$.

Required methods

Conjugates this value by a given matrix, returning a copy.

Implementations on Foreign Types

Implementors