How to solve two equations for four unknowns?
1 次查看(过去 30 天)
显示 更早的评论
How to solve the follwoing system for x and y in Matlab?
syms x y b r
E1=x - y == x/(1+log(b*y+1));
E2=exp(r*(1-x))== 1+log(b*y+1);
sol = solve(E1,E2,{x,y})
0 个评论
回答(1 个)
Alex Alex
2021-6-23
No options, the number of equations must be greater than or equal to the number of unknowns. Now 2<4?
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!