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!