init differentiation

This commit is contained in:
2025-09-15 10:36:17 +03:00
parent 435dfb8ac5
commit 6addbce56a

View File

@@ -6,6 +6,14 @@ from .orthogonal import (
QRSolver, QRSolver,
LeastSquaresSolver, LeastSquaresSolver,
) )
from .differentiation import (
ForwardDiff,
BackwardDiff,
CentralDiff,
CentralDiff4th,
SecondDerivative,
RichardsonExtrap,
)
from .solvers import LUDecomposition, GaussJordan, Jacobi, GaussSeidel, Cholesky from .solvers import LUDecomposition, GaussJordan, Jacobi, GaussSeidel, Cholesky
from .roots import Bisection, FixedPoint, Secant, NewtonRoot from .roots import Bisection, FixedPoint, Secant, NewtonRoot
from .interpolation import NewtonInterpolation, LagrangeInterpolation from .interpolation import NewtonInterpolation, LagrangeInterpolation