从Ryacas计算的表达式中提取x ^ k的系数

问题描述 投票:0回答:1

我得到了像这样的Ryacas表达式,我想提取x ^ 4,11的系数。我应该如何编写代码才能得到这个,谢谢。

r yacas
1个回答
0
投票

希望这可以帮助:

x <- Sym("x")
P <- (x+1)*(x+2)*(x+3)
Expand(P)
# expression(x^3 + 6 * x^2 + 11 * x + 6)
# coefficient of x^2:
yacas("Coef((x+1)*(x+2)*(x+3), x, 2)")
# expression(6)
# or:
yacas(paste0("Coef(", P, ",x , 2)"))
# expression(6)
© www.soinside.com 2019 - 2024. All rights reserved.