How to Customize Sigma in subexpr()?

1 visualización (últimos 30 días)
Aoi Midori
Aoi Midori el 17 de Abr. de 2019
Comentada: Aoi Midori el 17 de Abr. de 2019
Let's say we have a formula below
syms k1 k2
eqn2 = (k1+k2+1)^2+(k1+k2+1)+1;
and put 'eqn2' into subexpr() function,
[EQN2, sigma] = subexpr(eqn2)
then the answer would be as follows:
EQN2 = sigma^2 + sigma + 1
sigma = k1 + k2 + 1
However, this time, I would like the sigma to be k1 + k2.
Could I customize the sigma as I want? If it's yes, how could I replace it?

Respuesta aceptada

madhan ravi
madhan ravi el 17 de Abr. de 2019
subs(eqn2,sigma,k1+k2)
  1 comentario
Aoi Midori
Aoi Midori el 17 de Abr. de 2019
Thank you for your quick response. It worked!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by