├── .gitignore ├── README.md ├── compute_1d_tuning_curve.m ├── compute_2d_tuning_curve.m ├── compute_all_tuning_curves.m ├── data_for_cell77.mat ├── fit_all_ln_models.m ├── fit_model.m ├── hd_map.m ├── ln_poisson_model.m ├── plot_performance_and_parameters.m ├── pos_map.m ├── run_me.m ├── select_best_model.m ├── speed_map.m └── theta_map.m /.gitignore: -------------------------------------------------------------------------------- 1 | *.m~ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/README.md -------------------------------------------------------------------------------- /compute_1d_tuning_curve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/compute_1d_tuning_curve.m -------------------------------------------------------------------------------- /compute_2d_tuning_curve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/compute_2d_tuning_curve.m -------------------------------------------------------------------------------- /compute_all_tuning_curves.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/compute_all_tuning_curves.m -------------------------------------------------------------------------------- /data_for_cell77.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/data_for_cell77.mat -------------------------------------------------------------------------------- /fit_all_ln_models.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/fit_all_ln_models.m -------------------------------------------------------------------------------- /fit_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/fit_model.m -------------------------------------------------------------------------------- /hd_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/hd_map.m -------------------------------------------------------------------------------- /ln_poisson_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/ln_poisson_model.m -------------------------------------------------------------------------------- /plot_performance_and_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/plot_performance_and_parameters.m -------------------------------------------------------------------------------- /pos_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/pos_map.m -------------------------------------------------------------------------------- /run_me.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/run_me.m -------------------------------------------------------------------------------- /select_best_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/select_best_model.m -------------------------------------------------------------------------------- /speed_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/speed_map.m -------------------------------------------------------------------------------- /theta_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiocomoLab/ln-model-of-mec-neurons/HEAD/theta_map.m --------------------------------------------------------------------------------