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

Symmetric packed matrix rank-1 update

A ← A + αxxT

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Spr for f32

source§

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

source§

impl Spr for f64

source§

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

Implementors§