Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试绘制此传递函数的奈奎斯特图
2 (s+1) / (s (s+10)^4)
这是我的代码:
NUM2 = [2 2]; DEN2 = [5 40 600 4000 10000 0]; FT2 = tf(NUM2,DEN2) fprintf ('\n Nyquist\n') figure(2) nyquist(FT2)
这是结果:
这是我手绘的
我的代码有什么问题?