Trait rblas::vector::ops::Scal [] [src]

pub trait Scal: Sized {
    fn scal<V: ?Sized + Vector<Self>>(alpha: &Self, x: &mut V);
    fn scal_mat(alpha: &Self, x: &mut Matrix<Self>);
}

Computes a * x and stores the result in x.

Required Methods

fn scal<V: ?Sized + Vector<Self>>(alpha: &Self, x: &mut V)

fn scal_mat(alpha: &Self, x: &mut Matrix<Self>)

Implementors