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.
4 ビュー (過去 30 日間)
古いコメントを表示
Wim van Vreeswijk
2019 年 12 月 25 日
コメント済み: Wim van Vreeswijk
2019 年 12 月 26 日
I use the step() command to plot the step response of 94 transfer function in one plot.
I want to remove the dotted lines.
0 件のコメント
採用された回答
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 Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!