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

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

Symmetric packed matrix rank-1 update

A ← A + αxxT

Required methods

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

Loading content...

Implementations on Foreign Types

impl Spr for f32[src]

impl Spr for f64[src]

Loading content...

Implementors

Loading content...