Nyquist Plot of exponential function

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 件のコメント

Paul
Paul 2021 年 5 月 3 日
What have you tried so far?
Sandhya H
Sandhya H 2021 年 5 月 7 日
I don't know how to approach to get the nyquist plot. Can you please share the code?
Paul
Paul 2021 年 5 月 8 日
Take a look at
doc nyquist

サインインしてコメントする。

回答 (1 件)

Arthi Sathyamurthi
Arthi Sathyamurthi 2021 年 7 月 28 日

0 投票

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;

質問済み:

2021 年 5 月 2 日

回答済み:

2021 年 7 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by