利用MATLAB指令求函数f=ax²+bx+c对变量x的一阶导数并求其结果

2024-12-14 07:47:53
推荐回答(1个)
回答1:

syms a b c f x
f=a*x^2+b*x+c;
diff(f,'x')

结果为:
ans =

b + 2*a*x