フィルターのクリア

How do I remove the dotted steady state line from the step response plot? I used the step() command to plot the step response of 94 transfer function in one plot.

1 回表示 (過去 30 日間)
I use the step() command to plot the step response of 94 transfer function in one plot.
I want to remove the dotted lines.
teststep.jpg

採用された回答

Mark Sherstan
Mark Sherstan 2019 年 12 月 26 日
You can add one more step and assign the step response to a variable and then plot it:
sys = tf([8 18 32],[1 6 14 24])
y = step(sys)
plot(y)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTime and Frequency Domain Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by