how can we find eigen values and eigen vector of a matrix having variable like x or y ?

20 次查看(过去 30 天)
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.

回答(2 个)

Raj
Raj 2019-12-12
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);

Hiro Yoshino
Hiro Yoshino 2019-12-12
a is supposed to be in its size otherwise you can calculate neither eigen values nor eigen vectors to begin with.

类别

Help CenterFile Exchange 中查找有关 Linear Algebra 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by