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