matlab中有求某点导数值的函数吗?

如在x=2时

第1个回答  2013-08-14
有的,如syms x y
y=3*x^2-2*x+5;dy=diff(y)
dy =
6*x-2
x=2;
yp=eval(dy)
yp =
10本回答被提问者采纳
相似回答