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

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

Symmetric rank-2 update

A ← A + αxyT + αyxT

Required methods

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

Loading content...

Implementations on Foreign Types

impl Syr2 for f32[src]

impl Syr2 for f64[src]

Loading content...

Implementors

Loading content...