solve by substitution method

Antworten (3)

Matt Fig
Matt Fig am 16 Mär. 2011

0 Stimmen

Do you have a question? One related to MATLAB?

2 Kommentare

Matt Tearle
Matt Tearle am 16 Mär. 2011
attack of the Matt Police!
Matt Fig
Matt Fig am 16 Mär. 2011
HaHa, I didn't even see your first comment till now!

Melden Sie sich an, um zu kommentieren.

Walter Roberson
Walter Roberson am 17 Mär. 2011

0 Stimmen

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.)
omer ozdemir
omer ozdemir am 15 Sep. 2018
Bearbeitet: Walter Roberson am 15 Sep. 2018

0 Stimmen

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 Kommentare

Walter Roberson
Walter Roberson am 15 Sep. 2018
You can use subs() and simplify() from the Symbolic toolbox.
Note that f(s) will not be a polynomial.
omer ozdemir
omer ozdemir am 16 Sep. 2018
thanks.

Melden Sie sich an, um zu kommentieren.

Gefragt:

am 16 Mär. 2011

Bearbeitet:

am 16 Sep. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by