![](https://secure.gravatar.com/avatar/d41fa6e1fe29e6c5c5821b5a3f31f190.jpg?s=120&d=mm&r=g)
Feb. 23, 2005
12:40 p.m.
Hi all, Is it somehow possible to improve the accuracy of derivative ? A small example is attached. from scipy import * def func(x): return exp(2*x) for i in arange(1,6): print i,' derivative of exp(2*x) at x=0',derivative(func,0.0,0.01,i,order=7),'exact',2**i Any suggestion ? Nils