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

3 次查看(过去 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,

回答(1 个)

Max Heimann
Max Heimann 2022-1-16
You could try:
s = tf('s')
T = 0.2;
K = <some value>
GcG = K * e ^ (-T * s)
bode(GcG)

类别

Help CenterFile 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!

Translated by