Extract every subexpression in a symbolic expression between + and -

2 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Andrew Newell
Andrew Newell am 18 Apr. 2017
Bearbeitet: Andrew Newell am 18 Apr. 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.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by