Hpr

Trait Hpr 

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

Hermitian packed matrix rank-1 update

A ← A + αxxH

Required Methods§

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Hpr for f32

Source§

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

Source§

impl Hpr for f64

Source§

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

Implementors§