Skip to content
/ QR Public

QR algorithm finding eigenvalues of matrix

Notifications You must be signed in to change notification settings

Tolisz/QR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QR algorithm

QR algoritm for eigenvalues of a complex Hessenberg matrix.

Main Function

The main funciton of the program is

[eigs, success] = QRshift(H, tol);

An example of using this funtion for simple matrix

>> A = [1, 2, 3; 4, 5, 6; 7, 8, 9];
>> eigs = QRshift(hess(A), 1e-16)'
eigs =
   16.1168   -1.1168   -0.0000

About

QR algorithm finding eigenvalues of matrix

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages