Galileo Galilei (1564-1642):
Las matemáticas son el alfabeto con el cual Dios ha escrito el Universo
Notas y algoritmos para el curso de Métodos Numéricos 2020-B Creado por Giancarlo Ortiz con Python en Jupyter Notebook.
Tener una una version del interprete que incluya los paquetes para calculo numérico y gráficas 2D/3D
En la Terminal
# Instalar o actualizar pip
python -m pip install -U pip
# Instalar NumPy
pip install numpy
pip show numpy
# Instalar MatPlotLib
# MatPlotLib requiere NumPy
pip install matplotlib
pip show matplotlib
En Python
# Módulos Python para instalar usando PIP o CONDA
import numpy as np
import matplotlib as plt
📁 Python
- Generalidades De Python
📁 Jupyter
- Teoría del Error
- Raíces de ecuaciones
- Integración Numérica
- Solución de sistemas de ecuaciones lineales
- Tutorial Python 3.6 [2016]
- Referencia Python 3.6 [2016]