Nyquist plot - Changing the graph axes
18 次查看(过去 30 天)
显示 更早的评论
Hello everyone
According to the following code why I see the graph like this:
and not like this :
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!