フィルターのクリア

polar plot of n^2 = 1+g equation

1 回表示 (過去 30 日間)
Ismita
Ismita 2022 年 11 月 19 日
編集済み: VBBV 2022 年 11 月 22 日
polar plot of n^2 = 1+g (g=a/b~10^4) and/ or p^2 = (1-g)/( (1+g)*cos^2(theta)) equations and how can I get a circle from this equation? Thanks
  2 件のコメント
Mathieu NOE
Mathieu NOE 2022 年 11 月 21 日
what are n , p and g ?
Ismita
Ismita 2022 年 11 月 21 日
n and p are the unknown unknown variables. Others are known, theta is variable. So to plot n (independent of theta) and p with theta. Thank you

サインインしてコメントする。

回答 (1 件)

VBBV
VBBV 2022 年 11 月 22 日
編集済み: VBBV 2022 年 11 月 22 日
About the 2nd equation, you can plot it straightforward by plugging values for variables g and theta
theta = 0:pi/100:2*pi; %
g = -0.5;
p = sqrt(((1-g)/(1+g))*(cos(theta)).^2);
polar(theta,p)
  1 件のコメント
VBBV
VBBV 2022 年 11 月 22 日
The first equation is not clear to me

サインインしてコメントする。

カテゴリ

Help Center および File ExchangePolar Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by