Trait modcholesky::GershgorinCircles[][src]

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

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

Computes the Gershgorin Circles of a matrix

Implementations on Foreign Types

Computes the Gershgorin Circles of a matrix

Implementors