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

pub trait Scal: Sized {
    fn scal<V: ?Sized + Vector<Self>>(alpha: &Self, x: &mut V);
fn scal_mat(alpha: &Self, x: &mut dyn 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 dyn Matrix<Self>)

Loading content...

Implementations on Foreign Types

impl Scal for f32[src]

impl Scal for f64[src]

impl Scal for Complex32[src]

impl Scal for Complex64[src]

Loading content...

Implementors

Loading content...