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

2 ビュー (過去 30 日間)
Muhammad
Muhammad 2021 年 10 月 17 日
編集済み: David Goodmanson 2021 年 10 月 17 日
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 Center および File ExchangeChange Markers についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by