Any way to mark (1+0j) in Nyquist diagram

2 ビュー (過去 30 日間)
嵩人 藤森
嵩人 藤森 2021 年 6 月 24 日
コメント済み: 嵩人 藤森 2021 年 7 月 16 日
Hi, I'm trying to mark (1+0j) and invalidate (-1+0j) in Nyquist diagram cuz I'm analyzing a positeve feedback system.I can't find any information about it on the reference.

採用された回答

Bhavya Chopra
Bhavya Chopra 2021 年 7 月 8 日
I understand that you want to plot the points (1 + 0j) and (-1 + 0j) to mark them on the Nyquist plot. Consider the following Nyquist plot:
sys = tf(1,[1,1,1]);
nyquist(sys);
The points (1, 0) and (-1, 0) can be marked on the plot as follows:
hold on;
plot(1, 0, "o")
plot(-1, 0, "o")
hold off;
  1 件のコメント
嵩人 藤森
嵩人 藤森 2021 年 7 月 16 日
Thank you,
Much love

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

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by