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 件のコメント

dpb
dpb 2022 年 11 月 22 日
So, what have you done and where did you get stuck? What's the specific MATLAB Q?
Bilal
Bilal 2022 年 11 月 22 日
編集済み: Bilal 2022 年 11 月 22 日
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.

サインインしてコメントする。

 採用された回答

DGM
DGM 2022 年 11 月 22 日

0 投票

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 件のコメント

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

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

製品

リリース

R2022b

タグ

質問済み:

2022 年 11 月 22 日

編集済み:

2022 年 11 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by