フィルターのクリア

bisection method with log

3 ビュー (過去 30 日間)
Mohamad Mourad
Mohamad Mourad 2020 年 4 月 2 日
コメント済み: Mohamad Mourad 2020 年 4 月 5 日
if a=15
b=60
Sy=1070
p= 700
how can i find c using bisection method
P= (Sy/3)*(1-(c^2/b^2)+log(c^2/a^2))

回答 (1 件)

David Hill
David Hill 2020 年 4 月 2 日
Once you graph your function, you see there are 4 roots. Using the bisection method to find the numerical roots should now be easy.
a=15;
b=60;
Sy=1070;
p=700;
c=-150:.1:150;
y=@(c)(Sy/3)*(1-(c.^2/b^2)+log(c.^2/a^2))-p;
plot(c,y(c));
  1 件のコメント
Mohamad Mourad
Mohamad Mourad 2020 年 4 月 5 日
Thank you very mush , it is very useful

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by