Metadata-Version: 2.4
Name: IC23005UNO
Version: 1.0.1
Summary: Librería para resolver ecuaciones lineales y no lineales con diferentes metodos.
Author-email: Erick Iraheta <ic23005@ues.edu.sv>
Maintainer-email: Erick Iraheta <ic23005@ues.edu.sv>
License: ===============================================================================================
        ORIGINAL ENGLISH VERSION (Legally Binding) / VERSIÓN ORIGINAL EN INGLÉS (Legalmente Vinculante)
        ===============================================================================================
        
        MIT License
        
        Copyright (c) [2025] [Erick Israel Iraheta Contreras]
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
        ===============================================================================================
         TRADUCCIÓN NO OFICIAL AL ESPAÑOL (Sólo para fines informativos)
         UNOFFICIAL SPANISH TRANSLATION (For informational purposes only)
        ===============================================================================================
        
        --- AVISO IMPORTANTE ---
        Esta es una traducción no oficial de la Licencia MIT al español y no tiene validez legal por sí misma.
        Se proporciona únicamente con fines informativos para facilitar la comprensión.
        La única versión legalmente vinculante de la licencia es la versión original en inglés que se encuentra
        arriba. En caso de cualquier discrepancia entre esta traducción y la versión original en inglés, la 
        versión en inglés prevalecerá.
        
        --- IMPORTANT NOTICE ---
        This is an unofficial Spanish translation of the MIT License and has no independent legal validity. It
        is provided for informational purposes only to aid understanding.
        The only legally binding version of the license is the original English version provided above. In case
        of any discrepancy between this translation and the original English version, the English version shall
        prevail.
        
        --------------------------------------------------------------------------------------------------------
        
        Licencia MIT
        
        Copyright (c) [2025] [Erick Israel Iraheta Contreras]
        
        Por la presente se otorga permiso, sin costo alguno, a cualquier persona que obtenga una copia de este
        software y la documentación asociada (en adelante, el "Software"), para tratar con el Software sin
        ninguna restricción. Esto incluye, de manera no limitativa, los derechos de usar, copiar, modificar,
        fusionar, publicar, distribuir, sublicenciar y/o vender copias del Software, así como permitir a las
        personas a las que se les entregue el Software hacer lo mismo, siempre y cuando se cumplan las
        siguientes condiciones:
        
        El aviso de copyright anterior y este aviso de permiso se incluirán en todas las copias o partes 
        sustanciales del Software.
        
        EL SOFTWARE SE PROPORCIONA "TAL CUAL", SIN GARANTÍA DE NINGÚN TIPO, EXPRESA O IMPLÍCITA, INCLUYENDO PERO
        NO LIMITADO A GARANTÍAS DE COMERCIALIZACIÓN, IDONEIDAD PARA UN PROPÓSITO PARTICULAR Y NO INFRACCIÓN. EN
        NINGÚN CASO LOS AUTORES O TITULARES DEL COPYRIGHT SERÁN RESPONSABLES DE NINGUNA RECLAMACIÓN, DAÑO U OTRA
        RESPONSABILIDAD, YA SEA EN UNA ACCIÓN DE CONTRATO, AGRAVIO O DE OTRO MODO, QUE SURJA DE, O EN CONEXIÓN
        CON EL SOFTWARE O EL USO U OTROS TRATOS EN EL SOFTWARE.
Project-URL: Repository, https://github.com/ic23005/CDA135/tree/main/IC23005UNO
Keywords: numerical methods,linear algebra,root finding,scipy,numpy,math
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.18
Dynamic: license-file

# 2025 - Universidad de El Salvador - Ingenieria en Desarrollo de Software
# Cálculo Numérico para el Desarrollo de Aplicaciones
# Examen Corto 1 - Grupo Teórico 2

**IC23005** es una librería que permite resolver sistemas ecuaciones lineales y no lineales con diferentes metodos.

## Métodos Incluidos

• **Sistemas de ecuaciones lineales :**
    ○ Eliminación de Gauss (`eliminacion_gauss_`)
    ○ Eliminación de Gauss-Jordan (`eliminacion_gauss_jorda`)
    ○ Regla de Crammer (`regla_cramer`)
    ○ Descomposición LU (`descomposicion_lu`)
    ○ Método de Jacobi (`metodo_jacobi`)
    ○ Método de Gauss-Seidel (`metodo_gauss_seidel`)
• **Sistemas de ecuaciones no lineales:**
    ○ Método de Bisección (`metodo_bisection`)

## Licencia

MIT License © Erick Israel Iraheta Contreras

## Instalación

Puedes instalar la librería __pip install__ desde **PyPI**:

```bash
pip install IC23005UNO
