is there any way to simplify a polynomial without using simplify from Symbolic Math Toolbox?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Erwin Avendaño
le 7 Nov 2017
Commenté : Walter Roberson
le 9 Nov 2017
z=simplify(y)
set(handles.edit23,'String',inline(z))
0 commentaires
Réponse acceptée
Walter Roberson
le 7 Nov 2017
Yes. However, it is a lot of work. For example the code has to know details such as
sin(x)^3 + cos(x)*sin(x)*cos(x)
should simplify to sin(x)
I think you have forgotten, though, that your input is from the user, and the user is not restricted to entering polynomials.
2 commentaires
Walter Roberson
le 9 Nov 2017
How are you going to enforce that the user can only entry polynomials? You are reading a string from the user.
my polynomial is something like this 4 (x-1) +6 (x-1) (x-5) ) +9 (6-x) (1-x) (5-x)
That has an extra ")" in the middle of it, and is missing multiplication symbols. You are going to need to write a text parser to figure out what the user meant. With forms like that, you cannot even be immediately certain that the maximum degree is 5, since it would be legal for the user to enter a form in which higher order degrees cancelled out, such as the difference between two 6 degree polynomials.
simplify() is not even the correct operation for your purposes:
>> simplify((x+1)*(x+2))
ans =
(x + 1)*(x + 2)
what you want is expand()
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Polynomials dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!