[][src]Trait modcholesky::GershgorinCircles

pub trait GershgorinCircles {
    fn gershgorin_circles(&self) -> Vec<(f64, f64)>;
}

Gershgorin circles

References

  • Semyon Aranovich Gerschgorin. Über die Abgrenzung der Eigenwerte einer Matrix. Izv. Akad. Nauk. USSR Otd. Fiz.-Mat. Nauk, 6: 749–754, 1931.

Required methods

fn gershgorin_circles(&self) -> Vec<(f64, f64)>

Computes the Gershgorin Circles of a matrix

Loading content...

Implementations on Foreign Types

impl GershgorinCircles for Array2<f64>[src]

fn gershgorin_circles(&self) -> Vec<(f64, f64)>[src]

Computes the Gershgorin Circles of a matrix

Loading content...

Implementors

Loading content...