solve by substitution method
조회 수: 4 (최근 30일)
이전 댓글 표시
4x+5y=-15
x=3-8y
답변 (3개)
Walter Roberson
2011년 3월 17일
syms x y
yexpr = solve(4*x+5*y+15*x,y);
xval = solve(subs(3-8*y+15*x,yexpr),x);
yval = solve(subs(4*x + 5*y + 15*x, x, xval),y);
(There is at least one shorter method.)
댓글 수: 0
omer ozdemir
2018년 9월 15일
편집: Walter Roberson
2018년 9월 15일
how can be solved this problem?
suppose that a polynominal can be expressed by
f(x)= x^5+3*x^4+4*x^3+2*x^2+3*x+6
If one wants to substitute x by s-1/s+1, the function f(x) can be changed into a function of s.
thanks.
댓글 수: 2
Walter Roberson
2018년 9월 15일
You can use subs() and simplify() from the Symbolic toolbox.
Note that f(s) will not be a polynomial.
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!