├── .gitignore ├── AK_Fixed_Point_Solver.ipynb ├── AKsolve.py ├── DSGE_LinApp.ipynb ├── DSGE_grid.ipynb ├── DSGEtestdata.csv ├── Euler_Errors.ipynb ├── LICENSE ├── LinApp.py ├── Moment_Calculator.ipynb ├── OLG_DSGE.idx ├── OLG_DSGE.ipynb ├── OLG_DSGE.pdf ├── OLG_DSGE.py ├── OLG_DSGE.tex └── rouwen.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /AK_Fixed_Point_Solver.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/AK_Fixed_Point_Solver.ipynb -------------------------------------------------------------------------------- /AKsolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/AKsolve.py -------------------------------------------------------------------------------- /DSGE_LinApp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/DSGE_LinApp.ipynb -------------------------------------------------------------------------------- /DSGE_grid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/DSGE_grid.ipynb -------------------------------------------------------------------------------- /DSGEtestdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/DSGEtestdata.csv -------------------------------------------------------------------------------- /Euler_Errors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/Euler_Errors.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /LinApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/LinApp.py -------------------------------------------------------------------------------- /Moment_Calculator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/Moment_Calculator.ipynb -------------------------------------------------------------------------------- /OLG_DSGE.idx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OLG_DSGE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/OLG_DSGE.ipynb -------------------------------------------------------------------------------- /OLG_DSGE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/OLG_DSGE.pdf -------------------------------------------------------------------------------- /OLG_DSGE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/OLG_DSGE.py -------------------------------------------------------------------------------- /OLG_DSGE.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/OLG_DSGE.tex -------------------------------------------------------------------------------- /rouwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerkphil/Jupyter_Notebooks/HEAD/rouwen.py --------------------------------------------------------------------------------