├── .gitignore ├── README.md ├── notes ├── 2x2Jacobians.ipynb ├── 2x2Jacobians.jl ├── 2x2Jacobians.jl.html ├── AutoDiff.ipynb ├── Finite difference checks.ipynb ├── automatic_differentiation_done_quick.html ├── automatic_differentiation_done_quick.jmd ├── backprop_poster.pdf ├── determinant_and_inverse.html ├── determinant_and_inverse.jl ├── double-pendulum-sensitivity.ipynb ├── symeig.jl └── symeig.jl.html └── psets ├── hw1.tex ├── hw1sol.tex ├── hw2.tex ├── hw2sol.tex ├── pset1.pdf ├── pset1sol.ipynb ├── pset1sol.pdf ├── pset2.pdf ├── pset2sol.ipynb └── pset2sol.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | old.md 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/README.md -------------------------------------------------------------------------------- /notes/2x2Jacobians.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/2x2Jacobians.ipynb -------------------------------------------------------------------------------- /notes/2x2Jacobians.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/2x2Jacobians.jl -------------------------------------------------------------------------------- /notes/2x2Jacobians.jl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/2x2Jacobians.jl.html -------------------------------------------------------------------------------- /notes/AutoDiff.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/AutoDiff.ipynb -------------------------------------------------------------------------------- /notes/Finite difference checks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/Finite difference checks.ipynb -------------------------------------------------------------------------------- /notes/automatic_differentiation_done_quick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/automatic_differentiation_done_quick.html -------------------------------------------------------------------------------- /notes/automatic_differentiation_done_quick.jmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/automatic_differentiation_done_quick.jmd -------------------------------------------------------------------------------- /notes/backprop_poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/backprop_poster.pdf -------------------------------------------------------------------------------- /notes/determinant_and_inverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/determinant_and_inverse.html -------------------------------------------------------------------------------- /notes/determinant_and_inverse.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/determinant_and_inverse.jl -------------------------------------------------------------------------------- /notes/double-pendulum-sensitivity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/double-pendulum-sensitivity.ipynb -------------------------------------------------------------------------------- /notes/symeig.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/symeig.jl -------------------------------------------------------------------------------- /notes/symeig.jl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/notes/symeig.jl.html -------------------------------------------------------------------------------- /psets/hw1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/hw1.tex -------------------------------------------------------------------------------- /psets/hw1sol.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/hw1sol.tex -------------------------------------------------------------------------------- /psets/hw2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/hw2.tex -------------------------------------------------------------------------------- /psets/hw2sol.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/hw2sol.tex -------------------------------------------------------------------------------- /psets/pset1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/pset1.pdf -------------------------------------------------------------------------------- /psets/pset1sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/pset1sol.ipynb -------------------------------------------------------------------------------- /psets/pset1sol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/pset1sol.pdf -------------------------------------------------------------------------------- /psets/pset2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/pset2.pdf -------------------------------------------------------------------------------- /psets/pset2sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/pset2sol.ipynb -------------------------------------------------------------------------------- /psets/pset2sol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmath/matrixcalc/HEAD/psets/pset2sol.pdf --------------------------------------------------------------------------------