get only addends of subexpression
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
David Armendáriz
el 15 de Mzo. de 2018
Comentada: Walter Roberson
el 15 de Mzo. de 2018
Suppose I have a symbolic expression like this
syms x x0
f=(x-x0)^3
children(f)
[(x-x0),3]
I would like to get instead
[(x-x0)^3]
How can this be done?
1 comentario
Steven Lord
el 15 de Mzo. de 2018
Can you say a little more about your ultimate goal? Perhaps there's a way to do what you want without running a MuPAD expression via feval(symengine, ...).
Respuesta aceptada
Walter Roberson
el 15 de Mzo. de 2018
You cannot do that with children().
You need to do something like,
feval(symengine, '(V) -> if testtype(V,"_plus") then [op(V)] else [V] end_if;', f)
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MuPAD en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!