how to find the angle subtended from origin to the poles in complex plane?

2 次查看(过去 30 天)
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?

采纳的回答

David Goodmanson
David Goodmanson 2021-10-17
编辑:David Goodmanson 2021-10-17
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 个)

类别

Help CenterFile Exchange 中查找有关 Change Markers 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by