├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── assets └── figure1-1.png └── notebooks ├── Errors.ipynb ├── Fundamentals.ipynb └── Introduction.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-Liao/numerical-methods-with-python/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-Liao/numerical-methods-with-python/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-Liao/numerical-methods-with-python/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-Liao/numerical-methods-with-python/HEAD/README.md -------------------------------------------------------------------------------- /assets/figure1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-Liao/numerical-methods-with-python/HEAD/assets/figure1-1.png -------------------------------------------------------------------------------- /notebooks/Errors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-Liao/numerical-methods-with-python/HEAD/notebooks/Errors.ipynb -------------------------------------------------------------------------------- /notebooks/Fundamentals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-Liao/numerical-methods-with-python/HEAD/notebooks/Fundamentals.ipynb -------------------------------------------------------------------------------- /notebooks/Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michael-Liao/numerical-methods-with-python/HEAD/notebooks/Introduction.ipynb --------------------------------------------------------------------------------