Clear Filters
Clear Filters

how to find the eigen value and plot them?

59 views (last 30 days)
safisay
safisay on 30 Sep 2019
Commented: Shubham Gupta on 30 Sep 2019
equation.PNG
for the above equation how to find the eigen values and plot them.
Can anyone help?

Answers (1)

Shubham Gupta
Shubham Gupta on 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 Comments
safisay
safisay on 30 Sep 2019
I understand what you are saying. But I want make a loop to find the eigen value as some of the variables have initial conditions.
Shubham Gupta
Shubham Gupta on 30 Sep 2019
I am not sure how the diagonal elements are varying? Can you please share some information reagarding this?

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!