how can we find eigen values and eigen vector of a matrix having variable like x or y ?
    15 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
how can we find eigen values and eigen vector of a matrix having variable like x or y ?
we have matix
a = [ 2, 1+z^-1 ;  z+1 2];
i want to find eigen values of a.
0 Commenti
Risposte (2)
  Raj
      
 il 12 Dic 2019
        You need to have 'Symbolic Math toolbox' to do this. Then you can calculate the Eigen values & Eigen vectors in terms of the variables something like this:
syms z; 
a = [ 2, 1+z^-1 ;  z+1 2];
[V,D]=eig(A);
0 Commenti
  Hiro Yoshino
    
 il 12 Dic 2019
        a is supposed to be  in its size otherwise you can calculate neither eigen values nor eigen vectors to begin with.
 in its size otherwise you can calculate neither eigen values nor eigen vectors to begin with.
 in its size otherwise you can calculate neither eigen values nor eigen vectors to begin with.
 in its size otherwise you can calculate neither eigen values nor eigen vectors to begin with.1 Commento
  Raj
      
 il 12 Dic 2019
				Correct but the 'a' matrix given in question is a 2x2 matrix. So the matrix is square and I don't see any problem here.
Vedere anche
Categorie
				Scopri di più su Calculus in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


