Tagged Questions

2
votes
6answers
1k views

algorithm to find derivative

I'm writing program in Python and I need to find the derivative of a function (a function expressed as string). For example: x^2+3*x Its derivative is: 2*x+3 Are there any scripts available, or is ...
1
vote
6answers
412 views

Java estimate a derivative at a point

I am currently writing a calculator application. I am trying to write a derivative estimator into it. The formula below is a simple way to do it. Normally on paper you would use the smallest h ...
1
vote
3answers
528 views

How does one calculate the rate of change (?derivatives?) in C#?

I have a stream of data that trends over time. How do I determine the rate of change using C#? It's been a long time since calculus class, but now is the first time I actually need it (in 15 ...