MATLAB: Symplifying numerical expression in Symbolic Math

simplyfy numerical resultsymbolic math

Hi,
after calculating in MuPAD, I´ve got some huge numerical results with fractions and exponents in it. How can I symplify this result in order to get a decimalnumber with just a few digits?
Thanks, Chris

Best Answer

try this
double(LongExpression)
or
vpa(LongExpression)
where LongExpression is your expression.
Related Question