Nyquist plot - Changing the graph axes
7 ビュー (過去 30 日間)
古いコメントを表示
Hello everyone
According to the following code why I see the graph like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/381608/image.png)
and not like this :
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/381613/image.png)
my code
The most basic there is :
sys1 = tf([1 1 ],[1 -1 0])
nyquist(sys1),grid on
0 件のコメント
回答 (1 件)
Chaitanya Mallela
2020 年 10 月 22 日
From the basic graph, you can observe that the axis points are different for real and imaginary. Try setting the equal axis and adjust the graph on the figure window.
sys1 = tf([1 1],[1 -1 0])
nyquist(sys1)
axis equal
grid on
参考
カテゴリ
Help Center および File Exchange で Time and Frequency Domain Analysis についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!