forked from denizdonmez/numethods
init differentiation
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user