Post Reply 
Approximating function derivatives
01-28-2024, 01:42 PM
Post: #14
RE: Approximating function derivatives
(09-07-2018 11:32 AM)Massimo Gnerucci Wrote:  
Code:
  diff = 2.0 * h * FF(guess) / (FF(guess + h) - FF(guess - h))

(01-28-2024 12:55 AM)Namir Wrote:  I regard the number of function calls as a measure of the efficiency of the algorithms.

Code:
  diff =  h*fx/(f(x(n)+h)-fx)

Albert shows us that we can have our cake and eat it too.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Approximating function derivatives - Pekis - 01-24-2024, 02:31 PM
RE: Approximating function derivatives - Thomas Klemm - 01-28-2024 01:42 PM



User(s) browsing this thread: 1 Guest(s)