autodiff
Python class for automatic differentiation
Python automatic differentiation class for forward mode automatic differentiation using operator overloading and reimplemented math functions. Single and partial derivatives are supported.
Supported operators: +, -, *, /, **, +=, -=, *=, /=, **=
Available functions: sin, cos, tan, asin, acos, atan, sqrt, exp, log, log10, sinh, cosh, tanh, asinh, acosh, atanh
See README file for usage examples.