替代答案

时间:2019-02-07 21:05:33

标签: matlab symbolic-math

问题:我要区分定义为的表达式 F

syms y n x G b c
F = (y+(n-1)*x)/(y+(n-1)*x+(G-1)*n*x)*...
    (1+-c*y+b*G*((y+(n-1)*x)/...
    (y+(n-1)*x+(G-1)*n*x)))/...
    (y+(n-1)*x+(G-1)*n*x)

ans =

Expression F

的输出
diff(F, y)

ans =

enter image description here

问题:是否可以获取在表达式内部替换了sigma1,sigma2和sigma3的 diff 的输出?

我尝试过的事情:我尝试过使用 simplify(),但是它以相同的方式输出答案。我曾考虑使用 subs(),但我不知道如何访问sigma1,sigma2 ...

0 个答案:

没有答案
相关问题