Trying to simultaneously solve the following, but I'm getting the following error, can someone please tell me how to fix it?
조회 수: 2 (최근 30일)
이전 댓글 표시
>> syms F
>> syms G
>> [F G]=solve('2*(F^2)*(G^2)+3*G=13.8','2*(G^3)+(F^2)=16.6')
The following is the error I get when I click enter:
Check for incorrect argument data type or missing argument in call to function 'solve'.
댓글 수: 0
답변 (1개)
chicken vector
2023년 4월 26일
Try this syntax:
syms F G
eqn = [2 * F^2 * G^2 + 3 * G == 13.8 , 2 * G^3 + F^2 == 16.6];
sol = solve(eqn, [F G])
If you receive the error:
Undefined function 'sym' for input arguments of type 'char'
You don't have the Symbolic Math Toolbox and you need to install it.
Type ver in the command window to see the Toolboxes you have.
If you can't find the symbolic toolbox, type syms x in the command window and it will be suggested to you.
댓글 수: 9
Walter Roberson
2023년 4월 26일
syms P F
eqn = [sym(13)/10 * P - F^(sym(21)/10) == 0 , P^(sym(16)/10) - (sym(900) - sym(95) * F)^(sym(5)/10) + sym(10) == 0];
sol = solve(eqn)
sol.P
sol.F
This produces two complex-valued solutions.
Representation matters for symbolic purposes.
참고 항목
카테고리
Help Center 및 File Exchange에서 Equation Solving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!