Filter löschen
Filter löschen

How can I rearrange an equation with only one variable?

2 Ansichten (letzte 30 Tage)
Troy Walton
Troy Walton am 27 Sep. 2018
Beantwortet: Walter Roberson am 27 Sep. 2018
How can I rearrange an equation like x^3+2*x^2+3*x-2=0 to a form set equal to an order of x such as x=(1/3)*(-x^3-2*x^2+2) in MATLAB?

Antworten (2)

Bish Erbas
Bish Erbas am 27 Sep. 2018
Something like this?
syms x
eqn = (x^3+2*x^2+3*x-2 == 0);
pretty(isolate(eqn,3*x)/3)
  2 Kommentare
Troy Walton
Troy Walton am 27 Sep. 2018
Not exactly. I'm looking for a way to isolate x from x^(any power!=1), but the m file is set for the equation to be user input. So the equation could be anything with only one independent variable. For more context, this is for a part of a fixed point method simplified to having only one variable, so at this point I'm trying to take f(x) and create a g(x) s.t. g(x)=x
Star Strider
Star Strider am 27 Sep. 2018
Perhaps:
syms x
Eq = x^3+2*x^2+3*x-2;
[Cfs,Trm] = coeffs(Eq,x)
Cfs =
[ 1, 2, 3, -2]
Trm =
[ x^3, x^2, x, 1]

Melden Sie sich an, um zu kommentieren.


Walter Roberson
Walter Roberson am 27 Sep. 2018
Use coeffs() with the two-output form, probably with the 'all' option. Variable to take it with respect to can be found by symvar(). Check the entry corresponding to the variable to power 1, which will be the second-last entry of the 'all' output.
Now subtract the term (coefficient times x) from the original equation, take the negative, and divide by the coefficient of x.
You will need to decide how you want to proceed if the coefficient associated with variable^1 is 0.

Kategorien

Mehr zu Formula Manipulation and Simplification finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by