Plot transfer function with exponential function
Ältere Kommentare anzeigen
Hi, how can I plot this tf in Matlab:
G(s)= 4e^-s/(s^2+4s+4)
I have tried this, but I am not sure if this is ok:
sys = tf([4*exp(-1)],[1 4 4]);
Antworten (2)
Ameer Hamza
am 6 Dez. 2020
An alternative approach:
s = tf('s');
G = 4*exp(-s)/(s^2+4*s+4);
step(G)
1 Kommentar
Mark S
am 6 Dez. 2020
Setsuna Yuuki.
am 6 Dez. 2020
Bearbeitet: Setsuna Yuuki.
am 6 Dez. 2020
You need add inputdelay
sets=tf(4,[1 4 4],'inputdelay',1)
sets =
4
exp(-1*s) * -------------
s^2 + 4 s + 4

1 Kommentar
Mark S
am 6 Dez. 2020
Kategorien
Mehr zu Digital Filter Analysis finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!