pub trait LinearOp<T: Vector, S: Vector> {
    fn apply(&self, rhs: &T) -> S;
}
Expand description

Linear operation for Vector

Required Methods

Implementations on Foreign Types

Implementors

TODO: Transpose Matrix as Linear operator for Vector