How to Customize Sigma in subexpr()?
2 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!