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

如题,方程式如下,
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的值

 Akzeptierte Antwort

gapija
gapija am 21 Nov. 2022

0 Stimmen

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)

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB 快速入门 finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 21 Nov. 2022

Beantwortet:

am 21 Nov. 2022

Community Treasure Hunt

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

Start Hunting!