Link to home
Start Free TrialLog in
Avatar of ericj040697
ericj040697

asked on

algorithm to calculate the derivative

I am looking for an algorithm to calculate the derivative of functions like i=f(v). Do you know if this is somewhere publicly awailable?
ASKER CERTIFIED SOLUTION
Avatar of Msoft
Msoft

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jos010697
jos010697

You're basiscally correct; a better estimation of f'(x), given
f(x) (in any form), is

   (f(x+h)-f(x-h))/(2h)

kind regards,

Jos