Symbolic solution to a system of equations

조회 수: 1 (최근 30일)
Aleem Andrew
Aleem Andrew 2020년 4월 1일
댓글: Altug Bilge 2020년 11월 21일
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

채택된 답변

Ameer Hamza
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
Ameer Hamza 2020년 11월 11일
You can use subs() function
b_val = subs(sol.b, a, 5); % substitute a=5
Altug Bilge
Altug Bilge 2020년 11월 21일
Thank you so much!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

David Hill
David Hill 2020년 4월 1일
syms a;
[1,-1;2,-1]\[a;0];

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by