Is there a method for solving inequalities using the Symbolic Math Toolbox 5.6 (R2011a)?

25 vues (au cours des 30 derniers jours)
I would like to find a range of "x" that satisfies the following inequality:
x^2 - 4*x + 3 < 0
resulting in, for example,
1 < x < 3

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 16 Mai 2019
Modifié(e) : MathWorks Support Team le 16 Mai 2019
MuPad's SOLVE function can handle inequalities. For example, after typing 'mupad' at the command prompt to bring up the MuPAD window, type
solve(x^2 - 4*x + 3 < 0, x, Real)
The following is returned:
(1, 3)
By including the option "Real", MuPAD limits the solutions to real values of "x". You can exclude the option "Real" if you want to obtain complex solutions.

Plus de réponses (0)

Produits


Version

R2011a

Community Treasure Hunt

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

Start Hunting!

Translated by