pub trait LinearOp<T: Vector, S: Vector> { // Required method fn apply(&self, rhs: &T) -> S; }
Linear operation for Vector
Matrix as Linear operator for Vector
TODO: Transpose Matrix as Linear operator for Vector