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

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

 채택된 답변

gapija
gapija 2022년 11월 21일

0 개 추천

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)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 MATLAB 快速入门에 대해 자세히 알아보기

태그

질문:

2022년 11월 21일

답변:

2022년 11월 21일

Community Treasure Hunt

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

Start Hunting!