Symbolic Math Toolbox VS MuPAD: example in advance of the first?
Mostrar comentarios más antiguos
MATLAB
>> simplify(exp(log10(x)))
ans =
x^(1/log(10))
MuPAD
simplify(exp(log(10,x)), ln)
No effect. How to force MuPAD to simplify truely? I used consider MATLAB Simb.Tbx as a reduced version of MuPAD? That is -- MATLAB calls the MuPAD functions...
Respuesta aceptada
Más respuestas (2)
Paulo Silva
el 6 de Jun. de 2011
syms x
simplify(exp(log10(x)))
1 comentario
Igor
el 6 de Jun. de 2011
Andrei Bobrov
el 6 de Jun. de 2011
in MuPAD
expand(subs(exp(log(10,x)),log(10,x)=ln(x)/ln(10)));
EDIT
rewrite(exp(log(10,x)),ln)
1 comentario
Igor
el 7 de Jun. de 2011
Categorías
Más información sobre Common Operations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!