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

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

Symmetric rank-1 update

A ← A + αxxT

Required methods

fn syr<V: ?Sized + Vector<Self>>(
    symmetry: Symmetry,
    alpha: &Self,
    x: &V,
    a: &mut dyn Matrix<Self>
)

Loading content...

Implementations on Foreign Types

impl Syr for f32[src]

impl Syr for f64[src]

Loading content...

Implementors

Loading content...