Extract every subexpression in a symbolic expression between + and -

2 vues (au cours des 30 derniers jours)
Ahmed Hossam
Ahmed Hossam le 18 Avr 2017
Commenté : Ahmed Hossam le 18 Avr 2017
Is it somehow possible to get out of some expression E, for example:
E = 5*h*(a*(b/c)+(d*e*f)/(3*g)-(x*y)/(j*i*k)+...)/(...)
every subexpression, which is between + and -?
For Example:
(5*h*(a*(b/c)))/(...)
(5*h*(d*e*f)/(3*g))/(...)
(-5*h*(x*y)/(j*i*k))/(...)
...
?
Thank you for your help and support in advance.
Regards
Ahmed Hossam

Réponse acceptée

Andrew Newell
Andrew Newell le 18 Avr 2017
Modifié(e) : Andrew Newell le 18 Avr 2017
Depends whether you have muPAD. In the Symbolic Toolbox, you can use
E = expand(E);
to separate the terms, but then you need these functions from muPAD: nops to find out how many terms there are and op to extract them.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by