How to make a bode plot from a transfer function
147 次查看(过去 30 天)
显示 更早的评论
Hi how would I make a blode plot from this transfer function?
Gp(s) = (10e^-0.25S)/((1+1.2S)(1+3.5S))
is this the correct code in Matlab?
0 个评论
采纳的回答
Star Strider
2020-4-9
Yes.
The code you posted:
s = tf('s');
g = 10*exp(-0.25*s)/((1+1.2*s)*(1+3.5*s))
figure
bode(g)
grid
should work.
Are you having problems with it?
4 个评论
Star Strider
2020-4-9
As always, my pleasure!
It looks correct to me. Note that the exponential term is an output delay that primarily affects the phase of the Bode plot.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Plot Customization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!