How can I make this graph with the "for" command?

Hi everyone. Can someone help ? How can I make this graph with the "for" command in the picture? (This question will be delete)

2 commentaires

dpb
dpb le 22 Nov 2022
So, what have you done and where did you get stuck? What's the specific MATLAB Q?
Bilal
Bilal le 22 Nov 2022
Modifié(e) : Bilal le 22 Nov 2022
I think the for command is: For a=[0, 0.2, 0.4,0.5,1,1.5 ]
But connecting it with graphs I can't get exactly 1 result in the end. And I can't plot the "undamped" , "critical" and "over" parts at all. Also I have 24 hours to do it.

Connectez-vous pour commenter.

 Réponse acceptée

Good gravy it's been forever since I did any of this. Here's a start.
ze = [0 0.2 0.4 0.5 1 1.5];
for k = 1:numel(ze)
% 1/(s^2 + 2*ze*S + 1)
sys = tf(1,[1 2*ze(k) 1]);
stepplot(sys,25)
hold on
end
Needs legend, etc.

1 commentaire

Bilal
Bilal le 23 Nov 2022
It's like you saved my life. I can't thank you enough. YOU ARE GREAT 🖤😃🤩🎉✨

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Programming dans Centre d'aide et File Exchange

Produits

Version

R2022b

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by