Trait rust_blas::matrix_vector::ops::Syr[][src]

pub trait Syr: Sized {
    fn syr<V: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        alpha: &Self,
        x: &V,
        a: &mut dyn Matrix<Self>
    ); }
Expand description

Symmetric rank-1 update

A ← A + αxxT

Required methods

Implementations on Foreign Types

Implementors