Nyquist Plot of exponential function

조회 수: 15 (최근 30일)
Sandhya H
Sandhya H 2021년 5월 2일
답변: Arthi Sathyamurthi 2021년 7월 28일
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
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일
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;

카테고리

Help CenterFile Exchange에서 Frequency-Domain Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by