Effacer les filtres
Effacer les filtres

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

4 vues (au cours des 30 derniers jours)
嵩人 藤森
嵩人 藤森 le 24 Juin 2021
Commenté : 嵩人 藤森 le 16 Juil 2021
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.

Réponse acceptée

Bhavya Chopra
Bhavya Chopra le 8 Juil 2021
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 commentaire
嵩人 藤森
嵩人 藤森 le 16 Juil 2021
Thank you,
Much love

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by