Liberia para resolver ecuaciones lineales y no lineales
Project description
SR23002UNO
SR23002UNO es una librería de Python diseñada para resolver sistemas de ecuaciones lineales y no lineales de forma eficiente y didáctica.
Métodos disponibles
✅ Bisección
✅ Crammer
✅ Descomposición LU
✅ Eliminación de Gauss
✅ Gauss-Jordan
✅ Gauss-Seidel
✅ Jacobi
⚙️ Instalación
Desde PyPI:
pip install SR23002UNO
Para actualizar a la última versión:
pip install SR23002UNO --upgrade
💡 Ejemplos de uso
Resolver sistemas de ecuaciones lineales con Cramer
from SR23002UNO import cramer
import numpy as np
A = np.array([[2, -1, 1], [0, 2, -1], [1, -1, 0]])
b = np.array([3, 1, 1])
solucion = cramer.cramer_solver(A, b)
print("Solución:", solucion)
🧑💻 Desarrollo
Librerías necesarias para preparar una nueva versión:
pip install setuptools twine
Crear distribución:
python setup.py sdist bdist_wheel
Subir a PyPI:
twine upload dist/*
O usa el comando:
python -m twine upload dist/*
🚀 Repositorio
El código fuente está disponible en:
👉 https://github.com/sr230002/CDA135-GT02-SR23002UNO
📄 Licencia
MIT License © David Enrique Sixco Ramos
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sr23002uno-1.0.7.tar.gz.
File metadata
- Download URL: sr23002uno-1.0.7.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e354b4e7f7925a28c2e49cf40753b994e31693b70e4c943d686b7637ed418533
|
|
| MD5 |
4335b6413e53b6fc12cf06a52caaf48b
|
|
| BLAKE2b-256 |
802fc3468c1845213ebff0b9a8caa602b32a88a765783d4c825fcd953a882694
|
File details
Details for the file sr23002uno-1.0.7-py3-none-any.whl.
File metadata
- Download URL: sr23002uno-1.0.7-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9217a7459fff08d9aa7d54c320ab47491c8862278079052f23faf9c455151453
|
|
| MD5 |
802355a1b570626b6a17ede21c69f589
|
|
| BLAKE2b-256 |
81525c61e891c0ef3a8a94f77a83e4ea06e0bb719d143e13f59ea0914da5cc6f
|