Azzera filtri
Azzera filtri

Plot transfer function with exponential function

33 visualizzazioni (ultimi 30 giorni)
Mark S
Mark S il 6 Dic 2020
Commentato: Mark S il 6 Dic 2020
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]);

Risposte (2)

Ameer Hamza
Ameer Hamza il 6 Dic 2020
An alternative approach:
s = tf('s');
G = 4*exp(-s)/(s^2+4*s+4);
step(G)

Setsuna Yuuki.
Setsuna Yuuki. il 6 Dic 2020
Modificato: Setsuna Yuuki. il 6 Dic 2020
You need add inputdelay
sets=tf(4,[1 4 4],'inputdelay',1)
sets =
4
exp(-1*s) * -------------
s^2 + 4 s + 4

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by