请问谁知道MATLAB中pascal的用法? 比如我要求(4x+7y)^6的展开系数怎么写程序?

2024-12-01 12:41:30
推荐回答(1个)
回答1:

如下面的程序
syms x y
s=(4*x+7*y)^6
p=expand(s)
这样得到的p就是展开式