Trait ndarray_linalg::lapack_traits::eigh::Eigh_[][src]

pub trait Eigh_: AssociatedReal {
    unsafe fn eigh(
        calc_eigenvec: bool,
        _: MatrixLayout,
        _: UPLO,
        a: &mut [Self]
    ) -> Result<Vec<Self::Real>>; }

Wraps *syev for real and *heev for complex

Required Methods

Implementations on Foreign Types

impl Eigh_ for f64
[src]

impl Eigh_ for f32
[src]

Implementors