如何求解一个无法化简的数学方程式。

如题,方程式如下,
a1*ln(1+b1*P*y1/x1) = a2*ln(1+b2*P*(1-y1)/(1-x1))
已知a1=6.08565,b1=0.00381,a2=25.82587,b2=0.00675,y1=0.5,P可取100,求解x1的值

 Risposta accettata

gapija
gapija il 21 Nov 2022

0 voti

a1=6.08565;
b1=0.00381;
a2=25.82587;
b2=0.00675;
y1=0.5;
P=100;
fzero(@(x1)a1*log(1+b1*P*y1/x1)-a2*log(1+b2*P*(1-y1)/(1-x1)),0.1)

Più risposte (0)

Categorie

Scopri di più su MATLAB 快速入门 in Centro assistenza e File Exchange

Tag

Richiesto:

il 21 Nov 2022

Risposto:

il 21 Nov 2022

Community Treasure Hunt

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

Start Hunting!