diff #
🧮 Numerical Differentiation
This module equips you with powerful functions for calculating numerical derivatives of functions. Dive into the world of numerical differentiation with ease! 🚀
Utilizing an adaptive algorithm, we help you determine the optimal finite difference and provide error estimates for your derivatives. Say goodbye to guesswork! 📊💡
Explore the possibilities and make your mathematical computations smoother with Numerical Differentiation. 🌟
fn backward #
fn backward(f func.Fn, x f64) (f64, f64)
fn central #
fn central(f func.Fn, x f64) (f64, f64)
fn forward #
fn forward(f func.Fn, x f64) (f64, f64)