Nyquist Plot of exponential function
8 次查看(过去 30 天)
显示 更早的评论
How do I obtain the nyquist plot of transfer function ((πe^(-0.25s)/s) in Matlab? What is the code to get nyquist plot of exponential functions?
3 个评论
回答(1 个)
Arthi Sathyamurthi
2021-7-28
You can use the nyquist or nyquistplot function in MATLAB to create a Nyquist plot of the frequency response.
You can use the following code to understand how to create Nyquist plot for your zero-pole-gain model
s = zpk('s');
G = pi * (exp(-0.25*s))/s;
nyquistplot(G);
grid on;
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!