Herk

Trait Herk 

Source
pub trait Herk: Sized {
    // Required method
    fn herk(
        symmetry: Symmetry,
        trans: Transpose,
        alpha: &Self,
        a: &dyn Matrix<Complex<Self>>,
        beta: &Self,
        c: &mut dyn Matrix<Complex<Self>>,
    );
}

Required Methods§

Source

fn herk( symmetry: Symmetry, trans: Transpose, alpha: &Self, a: &dyn Matrix<Complex<Self>>, beta: &Self, c: &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 Herk for f32

Source§

fn herk( symmetry: Symmetry, trans: Transpose, alpha: &f32, a: &dyn Matrix<Complex<f32>>, beta: &f32, c: &mut dyn Matrix<Complex<f32>>, )

Source§

impl Herk for f64

Source§

fn herk( symmetry: Symmetry, trans: Transpose, alpha: &f64, a: &dyn Matrix<Complex<f64>>, beta: &f64, c: &mut dyn Matrix<Complex<f64>>, )

Implementors§