bisection method with log

4 visualizzazioni (ultimi 30 giorni)
Mohamad Mourad
Mohamad Mourad il 2 Apr 2020
Commentato: Mohamad Mourad il 5 Apr 2020
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))

Risposte (1)

David Hill
David Hill il 2 Apr 2020
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));

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by