Method behind eig()?
    5 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
What's the method behin eig() in MATLAB? Is it QR-factarization (with which kind of shift, Hessenberg,...?) ?
1 commentaire
  KSSV
      
      
 le 20 Août 2019
				Read the documentation of eig. It depends on the matrix which you provide as input. You have an option of providing your required algorithm to egt eigen values. 
Réponses (1)
  Roshni Garnayak
    
 le 23 Août 2019
        The algorithms used for computing generalized eigenvalues of a pair are Cholesky factorization or QZ algorithm (generalized Schur decomposition). The “eig” function selects an algorithm based on the properties of the matrices. 
For further information on the algorithms used refer to the following link: 
1 commentaire
  Bruno Luong
      
      
 le 23 Août 2019
				In the page it looks like the algo is specified for Generalized Eigen problem (GEP). Granted the normal eigen value is also GEP with the second matrix being identity. But user (at least I) might have doubt when reading it.
Voir également
Catégories
				En savoir plus sur Linear Algebra dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



