how to find the eigen value and plot them?
41 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen

for the above equation how to find the eigen values and plot them.
Can anyone help?
0 Kommentare
Antworten (1)
Shubham Gupta
am 30 Sep. 2019
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 Kommentare
Shubham Gupta
am 30 Sep. 2019
I am not sure how the diagonal elements are varying? Can you please share some information reagarding this?
Siehe auch
Kategorien
Mehr zu Linear Algebra finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!