Member-only story

Data Science: Computation of Eigenvectors — Gershgorin circles.

applied.math.coding
2 min readApr 18, 2023

This story is part of my Data Science series.

In this article we restrict our attention to the problem of finding eigenvector/eigenvalue pairs for a finite dimensional linear operator.

In many applications of machine learning one is interested in those eigenvectors that belong to the highest eigenvalues in absolute value. One very prominent example is principle component analysis (see here).

A simple criterion to get an idea where these eigenvalues are located are the Gershgorin circles.

Gershgorin circles:

To get an idea how to apply this, let us compute the Gershgorin circles of the covariance matrix of the feature data from the data obtained from here.

The implementation will be done in Rust.

An Introduction into Rust

14 stories

Since the covariance matrix is symmetric, all the eigenvalues are on the real axis. This considerably facilitates the usage of the result.

The dependencies will be like this, that is, using ndarray utilities:

[dependencies]
ndarray = "0.15.0"
ndarray-csv = "0.5.1"

Loading the data:

use csv::ReaderBuilder;
use ndarray::{Array2, Axis};
use ndarray_csv::Array2Reader;

pub fn load_data() -> Array2<f64> {
let file = File::open("data/pci/wdbc-processed.csv").unwrap();
let mut reader = ReaderBuilder::new().has_headers(true).from_reader(file);
reader.deserialize_array2_dynamic::<f64>().unwrap()
}

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

applied.math.coding
applied.math.coding

Written by applied.math.coding

I am a Software Developer - Java, Rust, SQL, TypeScript - with strong interest doing research in pure and applied Mathematics.

No responses yet

Write a response