Remove Redundant Parentheses from String Expression
Mostra commenti meno recenti
String contains a long expression. Part of it is:
'...+(G0*(G1-G2+G3))+((G4*(G5+G6)))-(((G7+G8))*((G9+G10+G11)))+...'
The redundant parentheses could be removed and the expression should look like:
'...+G0*(G1-G2+G3)+G4*(G5+G6)-(G7+G8)*(G9+G10+G11)+...'
Is there a simple Matlab script to do this?
5 Commenti
dpb
il 7 Giu 2016
" redundant parentheses must be removed"
Why is this a must?
Where did they come from; perhaps the place to look is in the tool that generated them instead of trying to fixup the result.
I suppose there's a parser somewhere, but it would have to be smart enough to determine which are and which aren't actually redundant which isn't totally trivial exercise in general.
per isakson
il 8 Giu 2016
S H
il 8 Giu 2016
Walter Roberson
il 8 Giu 2016
https://github.com/ewiger/decade/tree/master/lib/mparser
S H
il 10 Giu 2016
Risposte (1)
Image Analyst
il 8 Giu 2016
0 voti
Recall that Azzi answered this, or something pretty much similar, and you accepted his answer in http://www.mathworks.com/matlabcentral/answers/287777#answer_224489
4 Commenti
S H
il 8 Giu 2016
S H
il 8 Giu 2016
Star Strider
il 10 Giu 2016
@S H —
Don’t get cheeky.
Revise the documentation for the Symbolic Math Toolbox simplify function.
Categorie
Scopri di più su Characters and Strings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!