I'm looking to generate a bode plot of the following function in matlab: Gc(s)G(s) = K*e^-Ts / s when T = 0.2
2 ビュー (過去 30 日間)
古いコメントを表示
I'm looking to generate a bode plot of the following function in matlab: Gc(s)G(s) = K*e^-Ts / s when T = 0.2.
How do i program the transfer function using the variable K.
Thanks,
0 件のコメント
回答 (1 件)
Max Heimann
2022 年 1 月 16 日
You could try:
s = tf('s')
T = 0.2;
K = <some value>
GcG = K * e ^ (-T * s)
bode(GcG)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with Control System Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!