how to find the angle subtended from origin to the poles in complex plane?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Muhammad
le 17 Oct 2021
Modifié(e) : David Goodmanson
le 17 Oct 2021
clc
clear all
s=tf('s');
num=1;
den=(s+(-65+65j))*(s-(65+65j));
sys=num/den;
pzmap(sys)
i want to find the angle subtended by these poles from origin?
0 commentaires
Réponse acceptée
David Goodmanson
le 17 Oct 2021
Modifié(e) : David Goodmanson
le 17 Oct 2021
Hello Muhammed,
it's as easy as
angle(65+65j)
angle(65-65j)
with each angle in radians subtended from the x axis, -pi < angle <= pi
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!