From 6addbce56a0b94f7d3fbd8ce239240a4d05772f1 Mon Sep 17 00:00:00 2001 From: Deniz Donmez Date: Mon, 15 Sep 2025 10:36:17 +0300 Subject: [PATCH] init differentiation --- numethods/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/numethods/__init__.py b/numethods/__init__.py index 03532d6..17d4f4f 100644 --- a/numethods/__init__.py +++ b/numethods/__init__.py @@ -6,6 +6,14 @@ from .orthogonal import ( QRSolver, LeastSquaresSolver, ) +from .differentiation import ( + ForwardDiff, + BackwardDiff, + CentralDiff, + CentralDiff4th, + SecondDerivative, + RichardsonExtrap, +) from .solvers import LUDecomposition, GaussJordan, Jacobi, GaussSeidel, Cholesky from .roots import Bisection, FixedPoint, Secant, NewtonRoot from .interpolation import NewtonInterpolation, LagrangeInterpolation