Is there a method for solving inequalities using the Symbolic Math Toolbox 5.6 (R2011a)?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 21 Sep 2011
Modifié(e) : MathWorks Support Team
le 16 Mai 2019
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
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.
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!