Symbolic solution to a system of equations
조회 수: 1 (최근 30일)
이전 댓글 표시
Can Matlab solve a system of equations like a+b=c, b=2c symbolically for b and c? The output should be c=-a, b=-2a
댓글 수: 0
채택된 답변
Ameer Hamza
2020년 4월 1일
편집: Ameer Hamza
2020년 4월 1일
In MATLAB you solve it like this using symbolic variables and solve function()
syms a b c
eq1 = a+b==c;
eq2 = b==2*c;
sol = solve([eq1 eq2])
Result:
>> sol.b
ans =
-2*a
>> sol.c
ans =
-a
댓글 수: 5
Ameer Hamza
2020년 11월 11일
You can use subs() function
b_val = subs(sol.b, a, 5); % substitute a=5
추가 답변 (1개)
참고 항목
카테고리
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!