How do i find x in an equation using the solve command?

1 view (last 30 days)
Hi everyone,
I use MATLAB R2015a.
Can't solve a x in the matlab even for the simpliest equation like x-2=0. tryed everything.
thank you for your help.
  1 Comment
Darshan Sen
Darshan Sen on 22 Nov 2019
Hello Shimon. What error are you getting? Do you have the Symbolic Math Toolbox add-on?
Here's a thread you might find useful. :)

Sign in to comment.

Accepted Answer

Darshan Sen
Darshan Sen on 22 Nov 2019
Once you have the Symbolic Math Toolbox add-on, you may solve the equation like this
syms x
eqn = x - 2 == 0;
solx = solve(eqn, x)
You'll find this link useful too.
Hope this helps. :)

More Answers (1)

Erivelton Gualter
Erivelton Gualter on 22 Nov 2019
Do you have Symbolic Math Toolbox?
Try the following:
syms x
fcn = x-2;
solve(fcn == 0)

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!