how to find the eigen value and plot them?
84 次查看(过去 30 天)
显示 更早的评论
![equation.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/240459/equation.png)
for the above equation how to find the eigen values and plot them.
Can anyone help?
0 个评论
回答(1 个)
Shubham Gupta
2019-9-30
To find the eigen values you can use :
e = eig(A);
help eig % for more information on eigen function and how to use it
and to plot simply use
plot(e);
help plot % to get more information on various options related to the function
I hope it helps
2 个评论
Shubham Gupta
2019-9-30
I am not sure how the diagonal elements are varying? Can you please share some information reagarding this?
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!