├── .DS_Store ├── fortran ├── Hugget-1993-with-participation │ ├── .cproject │ ├── .project │ ├── Debug │ │ ├── Hugget-1993-with-participation │ │ ├── globals.mod │ │ ├── globals.o │ │ ├── main.o │ │ ├── makefile │ │ ├── mathutils.mod │ │ ├── mathutils.o │ │ ├── objects.mk │ │ ├── sources.mk │ │ ├── sub_equilibrium.o │ │ ├── sub_model.o │ │ ├── sub_print.o │ │ ├── sub_read.o │ │ ├── sub_sim.o │ │ └── subdir.mk │ ├── comparison.txt │ ├── data.txt │ ├── error.txt │ ├── globals.f95 │ ├── main.f95 │ ├── mathutils.f95 │ ├── moments.txt │ ├── numerical.txt │ ├── parameters.txt │ ├── sub_equilibrium.f95 │ ├── sub_model.f95 │ ├── sub_print.f95 │ ├── sub_read.f95 │ └── sub_sim.f95 ├── Hugget-1993 │ ├── .cproject │ ├── .project │ ├── Debug │ │ ├── Hugget-1993 │ │ ├── globals.mod │ │ ├── globals.o │ │ ├── main.o │ │ ├── makefile │ │ ├── mathutils.mod │ │ ├── mathutils.o │ │ ├── objects.mk │ │ ├── sources.mk │ │ ├── sub_equilibrium.o │ │ ├── sub_model.o │ │ ├── sub_print.o │ │ ├── sub_read.o │ │ ├── sub_sim.o │ │ └── subdir.mk │ ├── globals.f95 │ ├── main.f95 │ ├── mathutils.f95 │ ├── numerical.txt │ ├── sub_equilibrium.f95 │ ├── sub_model.f95 │ ├── sub_print.f95 │ ├── sub_read.f95 │ └── sub_sim.f95 └── stochastic-NGM │ ├── .cproject │ ├── .project │ ├── Debug │ ├── NGM │ ├── globals.mod │ ├── globals.o │ ├── main.o │ ├── makefile │ ├── mathutils.mod │ ├── mathutils.o │ ├── objects.mk │ ├── sources.mk │ ├── sub_model.o │ ├── sub_print.o │ ├── sub_read.o │ ├── sub_sim.o │ └── subdir.mk │ ├── constants.f95 │ ├── discretizeAR1.f95 │ ├── globals.f95 │ ├── main.f95 │ ├── mathutils.f95 │ ├── numerical.txt │ ├── simulated_data.txt │ ├── sub_model.f95 │ ├── sub_print.f95 │ ├── sub_read.f95 │ └── sub_sim.f95 └── matlab ├── .DS_Store ├── Aiyagari-1994 ├── .DS_Store └── matlab-codes │ ├── Aiyagari.m │ └── stationary.m ├── Hopenhayn-1992 ├── .DS_Store └── matlab-codes │ ├── compute_parameters.m │ ├── compute_statespace.m │ ├── main.m │ └── solve_vfi.m ├── Hopenhayn-Rogerson-1993 ├── .DS_Store └── matlab-codes │ ├── compute_parameters.m │ ├── compute_statespace.m │ ├── main.m │ ├── solve_vfi.m │ ├── stdnormcdf.m │ └── tauchen.m ├── Hugget-1993 ├── .DS_Store └── matlab-codes │ └── Hugget.m ├── RBC ├── RBCstatistics.m ├── data.xls ├── emp.xls ├── hours.xls ├── hpfilter.m └── pop.xls ├── deterministic-NGM ├── .DS_Store └── matlab-codes │ └── deterministicNGM_vfi.m └── stochastic-NGM ├── .DS_Store ├── PEA ├── .DS_Store └── matlab-codes │ ├── consfun.m │ ├── objective.m │ └── stochasticNGM_pea.m ├── VFI ├── .DS_Store └── matlab-codes │ └── stochasticNGM_vfi.m └── projection ├── .DS_Store └── matlab-codes ├── consfun.m ├── griderror.m ├── hernodes.m └── stochasticNGM_euler.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/.DS_Store -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/.cproject -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/.project -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/Hugget-1993-with-participation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/Hugget-1993-with-participation -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/globals.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/globals.mod -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/globals.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/globals.o -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/main.o -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/makefile -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/mathutils.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/mathutils.mod -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/mathutils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/mathutils.o -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/objects.mk -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/sources.mk -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/sub_equilibrium.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/sub_equilibrium.o -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/sub_model.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/sub_model.o -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/sub_print.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/sub_print.o -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/sub_read.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/sub_read.o -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/sub_sim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/sub_sim.o -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/Debug/subdir.mk -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/comparison.txt -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/data.txt -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/error.txt: -------------------------------------------------------------------------------- 1 | 0.108230270 2 | -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/globals.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/globals.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/main.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/main.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/mathutils.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/mathutils.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/moments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/moments.txt -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/numerical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/numerical.txt -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/parameters.txt -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/sub_equilibrium.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/sub_equilibrium.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/sub_model.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/sub_model.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/sub_print.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/sub_print.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/sub_read.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/sub_read.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993-with-participation/sub_sim.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993-with-participation/sub_sim.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/.cproject -------------------------------------------------------------------------------- /fortran/Hugget-1993/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/.project -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/Hugget-1993: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/Hugget-1993 -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/globals.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/globals.mod -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/globals.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/globals.o -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/main.o -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/makefile -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/mathutils.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/mathutils.mod -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/mathutils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/mathutils.o -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/objects.mk -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/sources.mk -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/sub_equilibrium.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/sub_equilibrium.o -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/sub_model.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/sub_model.o -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/sub_print.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/sub_print.o -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/sub_read.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/sub_read.o -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/sub_sim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/sub_sim.o -------------------------------------------------------------------------------- /fortran/Hugget-1993/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/Debug/subdir.mk -------------------------------------------------------------------------------- /fortran/Hugget-1993/globals.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/globals.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993/main.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/main.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993/mathutils.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/mathutils.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993/numerical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/numerical.txt -------------------------------------------------------------------------------- /fortran/Hugget-1993/sub_equilibrium.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/sub_equilibrium.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993/sub_model.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/sub_model.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993/sub_print.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/sub_print.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993/sub_read.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/sub_read.f95 -------------------------------------------------------------------------------- /fortran/Hugget-1993/sub_sim.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/Hugget-1993/sub_sim.f95 -------------------------------------------------------------------------------- /fortran/stochastic-NGM/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/.cproject -------------------------------------------------------------------------------- /fortran/stochastic-NGM/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/.project -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/NGM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/NGM -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/globals.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/globals.mod -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/globals.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/globals.o -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/main.o -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/makefile -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/mathutils.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/mathutils.mod -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/mathutils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/mathutils.o -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/objects.mk -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/sources.mk -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/sub_model.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/sub_model.o -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/sub_print.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/sub_print.o -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/sub_read.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/sub_read.o -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/sub_sim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/sub_sim.o -------------------------------------------------------------------------------- /fortran/stochastic-NGM/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/Debug/subdir.mk -------------------------------------------------------------------------------- /fortran/stochastic-NGM/constants.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/constants.f95 -------------------------------------------------------------------------------- /fortran/stochastic-NGM/discretizeAR1.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/discretizeAR1.f95 -------------------------------------------------------------------------------- /fortran/stochastic-NGM/globals.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/globals.f95 -------------------------------------------------------------------------------- /fortran/stochastic-NGM/main.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/main.f95 -------------------------------------------------------------------------------- /fortran/stochastic-NGM/mathutils.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/mathutils.f95 -------------------------------------------------------------------------------- /fortran/stochastic-NGM/numerical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/numerical.txt -------------------------------------------------------------------------------- /fortran/stochastic-NGM/simulated_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/simulated_data.txt -------------------------------------------------------------------------------- /fortran/stochastic-NGM/sub_model.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/sub_model.f95 -------------------------------------------------------------------------------- /fortran/stochastic-NGM/sub_print.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/sub_print.f95 -------------------------------------------------------------------------------- /fortran/stochastic-NGM/sub_read.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/sub_read.f95 -------------------------------------------------------------------------------- /fortran/stochastic-NGM/sub_sim.f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/fortran/stochastic-NGM/sub_sim.f95 -------------------------------------------------------------------------------- /matlab/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/.DS_Store -------------------------------------------------------------------------------- /matlab/Aiyagari-1994/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Aiyagari-1994/.DS_Store -------------------------------------------------------------------------------- /matlab/Aiyagari-1994/matlab-codes/Aiyagari.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Aiyagari-1994/matlab-codes/Aiyagari.m -------------------------------------------------------------------------------- /matlab/Aiyagari-1994/matlab-codes/stationary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Aiyagari-1994/matlab-codes/stationary.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-1992/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-1992/.DS_Store -------------------------------------------------------------------------------- /matlab/Hopenhayn-1992/matlab-codes/compute_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-1992/matlab-codes/compute_parameters.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-1992/matlab-codes/compute_statespace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-1992/matlab-codes/compute_statespace.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-1992/matlab-codes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-1992/matlab-codes/main.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-1992/matlab-codes/solve_vfi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-1992/matlab-codes/solve_vfi.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-Rogerson-1993/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-Rogerson-1993/.DS_Store -------------------------------------------------------------------------------- /matlab/Hopenhayn-Rogerson-1993/matlab-codes/compute_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-Rogerson-1993/matlab-codes/compute_parameters.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-Rogerson-1993/matlab-codes/compute_statespace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-Rogerson-1993/matlab-codes/compute_statespace.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-Rogerson-1993/matlab-codes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-Rogerson-1993/matlab-codes/main.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-Rogerson-1993/matlab-codes/solve_vfi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-Rogerson-1993/matlab-codes/solve_vfi.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-Rogerson-1993/matlab-codes/stdnormcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-Rogerson-1993/matlab-codes/stdnormcdf.m -------------------------------------------------------------------------------- /matlab/Hopenhayn-Rogerson-1993/matlab-codes/tauchen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hopenhayn-Rogerson-1993/matlab-codes/tauchen.m -------------------------------------------------------------------------------- /matlab/Hugget-1993/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hugget-1993/.DS_Store -------------------------------------------------------------------------------- /matlab/Hugget-1993/matlab-codes/Hugget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/Hugget-1993/matlab-codes/Hugget.m -------------------------------------------------------------------------------- /matlab/RBC/RBCstatistics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/RBC/RBCstatistics.m -------------------------------------------------------------------------------- /matlab/RBC/data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/RBC/data.xls -------------------------------------------------------------------------------- /matlab/RBC/emp.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/RBC/emp.xls -------------------------------------------------------------------------------- /matlab/RBC/hours.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/RBC/hours.xls -------------------------------------------------------------------------------- /matlab/RBC/hpfilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/RBC/hpfilter.m -------------------------------------------------------------------------------- /matlab/RBC/pop.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/RBC/pop.xls -------------------------------------------------------------------------------- /matlab/deterministic-NGM/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/deterministic-NGM/.DS_Store -------------------------------------------------------------------------------- /matlab/deterministic-NGM/matlab-codes/deterministicNGM_vfi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/deterministic-NGM/matlab-codes/deterministicNGM_vfi.m -------------------------------------------------------------------------------- /matlab/stochastic-NGM/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/.DS_Store -------------------------------------------------------------------------------- /matlab/stochastic-NGM/PEA/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/PEA/.DS_Store -------------------------------------------------------------------------------- /matlab/stochastic-NGM/PEA/matlab-codes/consfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/PEA/matlab-codes/consfun.m -------------------------------------------------------------------------------- /matlab/stochastic-NGM/PEA/matlab-codes/objective.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/PEA/matlab-codes/objective.m -------------------------------------------------------------------------------- /matlab/stochastic-NGM/PEA/matlab-codes/stochasticNGM_pea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/PEA/matlab-codes/stochasticNGM_pea.m -------------------------------------------------------------------------------- /matlab/stochastic-NGM/VFI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/VFI/.DS_Store -------------------------------------------------------------------------------- /matlab/stochastic-NGM/VFI/matlab-codes/stochasticNGM_vfi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/VFI/matlab-codes/stochasticNGM_vfi.m -------------------------------------------------------------------------------- /matlab/stochastic-NGM/projection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/projection/.DS_Store -------------------------------------------------------------------------------- /matlab/stochastic-NGM/projection/matlab-codes/consfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/projection/matlab-codes/consfun.m -------------------------------------------------------------------------------- /matlab/stochastic-NGM/projection/matlab-codes/griderror.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/projection/matlab-codes/griderror.m -------------------------------------------------------------------------------- /matlab/stochastic-NGM/projection/matlab-codes/hernodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/projection/matlab-codes/hernodes.m -------------------------------------------------------------------------------- /matlab/stochastic-NGM/projection/matlab-codes/stochasticNGM_euler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandroruggieri/PhD-macro-computation-tutorial/HEAD/matlab/stochastic-NGM/projection/matlab-codes/stochasticNGM_euler.m --------------------------------------------------------------------------------