Azzera filtri
Azzera filtri

how to bode plot function.

2 visualizzazioni (ultimi 30 giorni)
Toan Dang Van
Toan Dang Van il 24 Mag 2020
Commentato: madhan ravi il 25 Mag 2020
please help me bode plot this:

Risposta accettata

rubindan
rubindan il 24 Mag 2020
Option 1:
s=tf('s');
G = 200*(s+0.4)*exp(-0.1*s)/s/s/(s+10)^2;
bode(G)
Option 2:
G = tf(200*[1 0.4],conv(conv([1 10],[1 10]),[1 0 0]) );
G.InputDelay=0.1;
bode(G)
  1 Commento
madhan ravi
madhan ravi il 25 Mag 2020
Moved from flag as a comment, Toan Dang Van comments:
tks u

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by