how to bode plot function.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Toan Dang Van
el 24 de Mayo de 2020
Comentada: madhan ravi
el 25 de Mayo de 2020
please help me bode plot this:

0 comentarios
Respuesta aceptada
rubindan
el 24 de Mayo de 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 comentario
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!