plot all roots of a polynomial which has a interval coefficient
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
For example, if the polynomial is: p= s^3 + a*s^2 + s + 1 which a=[2,3].
How can plot all the roots of this polynpomial? I can only figure out the roots when 'a' is fixed.
2 commentaires
Rik
le 24 Mar 2021
Wouldn't that just mean you would have to find the roots in a loop? There is an analytical way to determine the roots, but that will be a pain to implement.
Réponse acceptée
Rik
le 24 Mar 2021
I meant something like this.
N=200;
Z=NaN(N,3);
a=linspace(2,3,N);
for n=1:numel(a)
p=[1 a(n) 1 1];
z=roots(p);
Z(n,1:numel(z))=z;
end
h=plot(real(Z),imag(Z));
legend({'1','2','3'},'Location','NorthWest')
[h.Color]=deal('b','r','k');
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Polynomials dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
