Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 1.07 KB

README.md

File metadata and controls

17 lines (12 loc) · 1.07 KB

Eigen Value Algorithm

This is a simple implementation of the EigenValue Algorithm in Python. It is a simple implementation of the power-iteraion method, QR algorithm, Rayleigh Quotient Iteration method. The algorithm is implemented in the file jacobi_eigenvalue.py , power_iteration.py , qr_algorithm.py , rayleigh_quotient_iteraion.py. The file main.py contains a simple test of the algorithm.

The output of the algorithm is the eigenvalue and eigenvector of the matrix.

Output:

References:

Wikipedia: