i05nagai / algorithms

0 stars 0 forks source link

Newton methods accept auto differential #56

Open i05nagai opened 7 years ago

i05nagai commented 7 years ago

All newton methods class require a function to calculate jacobian matrix. In many cases, derivative of function is not analytically written. 3 options can be chose by user.

i05nagai commented 7 years ago

The class which inherits INewtonMethod have a constructor without derivative of function as an argument. If user calls the construcotor, the class automatically set a functor to calculate numerical differentiation, finite differences of function.