├── .gitignore ├── .readthedocs.yaml ├── 00-first-steps.ipynb ├── 01-python-basics.ipynb ├── 02-programs.ipynb ├── 03-loops-control-flow.ipynb ├── 04-basic-plotting.ipynb ├── 05-classes-oop.ipynb ├── 06-numpy-plotting.ipynb ├── 07-sympy.ipynb ├── 08-statistics.ipynb ├── 09-exceptions-testing.ipynb ├── 10-generators.ipynb ├── 11-more-classes.ipynb ├── CONTRIBUTORS.md ├── Exercises.ipynb ├── ExercisesSolutions.ipynb ├── FirstYearComputing_Master.tex ├── FirstYearComputing_Master_xelatex.tex ├── LICENSE ├── Makefile ├── README.md ├── _runipy └── Makefile ├── article-mod.tplx ├── breakpoints.py ├── chapter-base.tplx ├── chapter-ipython.tplx ├── conf.py ├── full-title.tpl ├── images ├── spyder-1.png ├── spyder-py3-reduced.png └── spyder-py3.png ├── index.ipynb ├── index.rst ├── lab1_basic.py ├── lab1_function.py ├── lab1_import.py ├── lab1_use_function.py ├── latex ├── BasicLatex.pdf ├── BasicLatex.tex ├── BasicLatexBibtex.tex ├── BasicLatexBibtex_pass1.pdf ├── BasicLatexBibtex_pass2.pdf ├── BasicLatexBibtex_pass3.pdf └── nummeth.bib ├── latex_chapter.tex ├── nbconvert_book.sty ├── pdf └── FirstYearComputing_Master.pdf ├── quadratic.py ├── requirements.txt ├── run_notebooks.py ├── southampton_precip.txt └── website-index.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /00-first-steps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/00-first-steps.ipynb -------------------------------------------------------------------------------- /01-python-basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/01-python-basics.ipynb -------------------------------------------------------------------------------- /02-programs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/02-programs.ipynb -------------------------------------------------------------------------------- /03-loops-control-flow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/03-loops-control-flow.ipynb -------------------------------------------------------------------------------- /04-basic-plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/04-basic-plotting.ipynb -------------------------------------------------------------------------------- /05-classes-oop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/05-classes-oop.ipynb -------------------------------------------------------------------------------- /06-numpy-plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/06-numpy-plotting.ipynb -------------------------------------------------------------------------------- /07-sympy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/07-sympy.ipynb -------------------------------------------------------------------------------- /08-statistics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/08-statistics.ipynb -------------------------------------------------------------------------------- /09-exceptions-testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/09-exceptions-testing.ipynb -------------------------------------------------------------------------------- /10-generators.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/10-generators.ipynb -------------------------------------------------------------------------------- /11-more-classes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/11-more-classes.ipynb -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/Exercises.ipynb -------------------------------------------------------------------------------- /ExercisesSolutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/ExercisesSolutions.ipynb -------------------------------------------------------------------------------- /FirstYearComputing_Master.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/FirstYearComputing_Master.tex -------------------------------------------------------------------------------- /FirstYearComputing_Master_xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/FirstYearComputing_Master_xelatex.tex -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/README.md -------------------------------------------------------------------------------- /_runipy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/_runipy/Makefile -------------------------------------------------------------------------------- /article-mod.tplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/article-mod.tplx -------------------------------------------------------------------------------- /breakpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/breakpoints.py -------------------------------------------------------------------------------- /chapter-base.tplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/chapter-base.tplx -------------------------------------------------------------------------------- /chapter-ipython.tplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/chapter-ipython.tplx -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/conf.py -------------------------------------------------------------------------------- /full-title.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/full-title.tpl -------------------------------------------------------------------------------- /images/spyder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/images/spyder-1.png -------------------------------------------------------------------------------- /images/spyder-py3-reduced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/images/spyder-py3-reduced.png -------------------------------------------------------------------------------- /images/spyder-py3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/images/spyder-py3.png -------------------------------------------------------------------------------- /index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/index.ipynb -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/index.rst -------------------------------------------------------------------------------- /lab1_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/lab1_basic.py -------------------------------------------------------------------------------- /lab1_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/lab1_function.py -------------------------------------------------------------------------------- /lab1_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/lab1_import.py -------------------------------------------------------------------------------- /lab1_use_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/lab1_use_function.py -------------------------------------------------------------------------------- /latex/BasicLatex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/latex/BasicLatex.pdf -------------------------------------------------------------------------------- /latex/BasicLatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/latex/BasicLatex.tex -------------------------------------------------------------------------------- /latex/BasicLatexBibtex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/latex/BasicLatexBibtex.tex -------------------------------------------------------------------------------- /latex/BasicLatexBibtex_pass1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/latex/BasicLatexBibtex_pass1.pdf -------------------------------------------------------------------------------- /latex/BasicLatexBibtex_pass2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/latex/BasicLatexBibtex_pass2.pdf -------------------------------------------------------------------------------- /latex/BasicLatexBibtex_pass3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/latex/BasicLatexBibtex_pass3.pdf -------------------------------------------------------------------------------- /latex/nummeth.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/latex/nummeth.bib -------------------------------------------------------------------------------- /latex_chapter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/latex_chapter.tex -------------------------------------------------------------------------------- /nbconvert_book.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/nbconvert_book.sty -------------------------------------------------------------------------------- /pdf/FirstYearComputing_Master.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/pdf/FirstYearComputing_Master.pdf -------------------------------------------------------------------------------- /quadratic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/quadratic.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/run_notebooks.py -------------------------------------------------------------------------------- /southampton_precip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/southampton_precip.txt -------------------------------------------------------------------------------- /website-index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanHawke/maths-with-python/HEAD/website-index.ipynb --------------------------------------------------------------------------------