peroxide::traits::math

Trait LinearOp

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

Linear operation for Vector

Required Methods§

Source

fn apply(&self, rhs: &T) -> S

Implementations on Foreign Types§

Source§

impl LinearOp<Vec<f64>, f64> for Vec<f64>

Source§

fn apply(&self, rhs: &Vec<f64>) -> f64

Implementors§

Source§

impl LinearOp<Vec<f64>, Vec<f64>> for Matrix

Matrix as Linear operator for Vector

Source§

impl LinearOp<Vec<f64>, Vec<f64>> for SPMatrix

Source§

impl LinearOp<Vec<Complex<f64>>, Vec<Complex<f64>>> for ComplexMatrix

TODO: Transpose Matrix as Linear operator for Vector