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 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Max Heimann
il 16 Gen 2022
You could try:
s = tf('s')
T = 0.2;
K = <some value>
GcG = K * e ^ (-T * s)
bode(GcG)
0 Commenti
Vedere anche
Categorie
Scopri di più su Get Started with Control System Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!