Librería para resolver sistemas de ecuaciones lineales y no lineales
Project description
Métodos disponibles:
- Eliminación de Gauss
- Gauss-Jordan
- Regla de Cramer
- Descomposición LU
- Método de Jacobi
- Método de Gauss-Seidel
- Método de Bisección
Instalación (una vez publicada en PyPI)
pip install MM23084UNO==1.0.2
Ejemplo de uso
from MM23084UNO import resolver_gauss_jordan
import copy
# Ejemplo 1: Sistema 3x3
matriz = [
[2, 1, -1],
[-3, -1, 2],
[-2, 1, 2]
]
vector = [8, -11, -3]
# Hacer copias para no modificar los originales
matriz_copia = copy.deepcopy(matriz)
vector_copia = copy.deepcopy(vector)
solucion = resolver_gauss_jordan(matriz_copia, vector_copia)
print("Solución con Gauss-Jordan:", solucion)
# Resultado esperado: [2.0, 3.0, -1.0]
Autor
Ricardo Mora - mm23084@ues.edu.sv
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
mm23084uno-1.0.2.tar.gz
(3.8 kB
view details)
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 mm23084uno-1.0.2.tar.gz.
File metadata
- Download URL: mm23084uno-1.0.2.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef41005601d2c3e70312d5542a16043726f3b8ab2ff8278ed24ad063b6ec2079
|
|
| MD5 |
0f020862b2e0f44d57d2b42a4d51c406
|
|
| BLAKE2b-256 |
45b421bdd2c3693310ad773269f71279b3dedc8386600d5c978c056e97e5a68f
|
File details
Details for the file mm23084uno-1.0.2-py3-none-any.whl.
File metadata
- Download URL: mm23084uno-1.0.2-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aec299bc89424cf9ef63b81c0f6ac7b751a48e7f65db8ec71e79d09855aafe94
|
|
| MD5 |
731e571c67904165e9d3b1a2cba4b4a9
|
|
| BLAKE2b-256 |
a66878d613ac986a0124d32983c7de44c063122247b5752a66b4e69986a68069
|