[][src]Trait peroxide::traits::math::LinearOp

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

Linear operation for Vector

Required methods

pub fn apply(&self, rhs: &T) -> S[src]

Loading content...

Implementations on Foreign Types

impl LinearOp<Vec<f64, Global>, f64> for Vec<f64>[src]

Loading content...

Implementors

impl LinearOp<Vec<f64, Global>, Vec<f64, Global>> for Matrix[src]

TODO: Transpose Matrix as Linear operator for Vector

impl LinearOp<Vec<f64, Global>, Vec<f64, Global>> for SPMatrix[src]

Loading content...