Some error being shown continuously
显示 更早的评论
Can you solve both this equation using newton raphson method....please can u help finding the solution for this....
Eqn 1 = 16.19983968*(x^4)+(-12.83225571*(x^3))+(-3.36213765*(x^2))+3.88*log(1-x)-3.88*log(1-y)+(-8.300851844)
Eqn 2= 16.19983968*(x^4)+(-34.43204196*(x^3))+15.88624592*(x^2)+6.724275306*x+3.88*log(x)-3.88*log(y)+(-1.052415372)
回答(1 个)
Girijashankar Sahoo
2021-5-20
0 个投票
%% fzero function might be helpful for solve in one line instruction
x0=0
x = fzero(@(x)16.19983968*(x^4)+(-12.83225571*(x^3))+(-3.36213765*(x^2))+3.88*log(1-x).....
+(-8.300851844),x0)
%% more to check help fzero
类别
在 帮助中心 和 File Exchange 中查找有关 Newton-Raphson Method 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!