Upload files to "numethods"

This commit is contained in:
2025-09-11 16:38:39 +03:00
parent 48e54fde8d
commit 921d08e4e0
3 changed files with 307 additions and 0 deletions

12
numethods/__init__.py Normal file
View File

@@ -0,0 +1,12 @@
from .linalg import Matrix, Vector
from .orthogonal import (
QRGramSchmidt,
QRModifiedGramSchmidt,
QRHouseholder,
QRSolver,
LeastSquaresSolver,
)
from .solvers import LUDecomposition, GaussJordan, Jacobi, GaussSeidel, Cholesky
from .roots import Bisection, FixedPoint, Secant, NewtonRoot
from .interpolation import NewtonInterpolation, LagrangeInterpolation
from .exceptions import *