├── .gitignore ├── README.md ├── exampleFigs ├── correlation_of_parameters_2gr_example.tif ├── diagnostics_for_mu1.tif ├── difference_of_means_2gr_example.tif ├── effectSize_2gr_example.tif ├── parameters_for_2gr_example.tif ├── plots_for_1gr_example.tif └── post_predictive_2gr_example.tif ├── fileExchange └── mcmcdiag │ ├── ChangeLog │ ├── Contents.m │ ├── License.txt │ ├── acorr.m │ ├── acorrtime.m │ ├── cipsrf.m │ ├── cmpsrf.m │ ├── cpsrf.m │ ├── custats.m │ ├── cusum.m │ ├── gbinit.m │ ├── gbiter.m │ ├── geyer_icse.m │ ├── geyer_imse.m │ ├── hair.m │ ├── hpdi.m │ ├── ipsrf.m │ ├── join.m │ ├── kernel1.m │ ├── kernelp.m │ ├── kernels.m │ ├── ksstat.m │ ├── mpsrf.m │ ├── ndhist.m │ ├── psrf.m │ ├── score.m │ └── thin.m ├── mbe_1gr_example.m ├── mbe_1gr_example.txt ├── mbe_1gr_plots.m ├── mbe_1gr_summary.m ├── mbe_2gr_example.m ├── mbe_2gr_example.txt ├── mbe_2gr_plots.m ├── mbe_2gr_summary.m ├── mbe_acfPlot.m ├── mbe_concChains.m ├── mbe_diagMCMC.m ├── mbe_gammaShRa.m ├── mbe_gelmanPlot.m ├── mbe_hdi.m ├── mbe_mcmcDensPlot.m ├── mbe_plotData.m ├── mbe_plotPairs.m ├── mbe_plotPost.m ├── mbe_restructChains.m ├── mbe_summary.m └── mbe_tracePlot.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/README.md -------------------------------------------------------------------------------- /exampleFigs/correlation_of_parameters_2gr_example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/exampleFigs/correlation_of_parameters_2gr_example.tif -------------------------------------------------------------------------------- /exampleFigs/diagnostics_for_mu1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/exampleFigs/diagnostics_for_mu1.tif -------------------------------------------------------------------------------- /exampleFigs/difference_of_means_2gr_example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/exampleFigs/difference_of_means_2gr_example.tif -------------------------------------------------------------------------------- /exampleFigs/effectSize_2gr_example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/exampleFigs/effectSize_2gr_example.tif -------------------------------------------------------------------------------- /exampleFigs/parameters_for_2gr_example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/exampleFigs/parameters_for_2gr_example.tif -------------------------------------------------------------------------------- /exampleFigs/plots_for_1gr_example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/exampleFigs/plots_for_1gr_example.tif -------------------------------------------------------------------------------- /exampleFigs/post_predictive_2gr_example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/exampleFigs/post_predictive_2gr_example.tif -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/ChangeLog -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/Contents.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/License.txt -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/acorr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/acorr.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/acorrtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/acorrtime.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/cipsrf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/cipsrf.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/cmpsrf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/cmpsrf.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/cpsrf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/cpsrf.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/custats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/custats.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/cusum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/cusum.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/gbinit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/gbinit.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/gbiter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/gbiter.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/geyer_icse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/geyer_icse.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/geyer_imse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/geyer_imse.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/hair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/hair.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/hpdi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/hpdi.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/ipsrf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/ipsrf.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/join.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/kernel1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/kernel1.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/kernelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/kernelp.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/kernels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/kernels.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/ksstat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/ksstat.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/mpsrf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/mpsrf.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/ndhist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/ndhist.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/psrf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/psrf.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/score.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/score.m -------------------------------------------------------------------------------- /fileExchange/mcmcdiag/thin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/fileExchange/mcmcdiag/thin.m -------------------------------------------------------------------------------- /mbe_1gr_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_1gr_example.m -------------------------------------------------------------------------------- /mbe_1gr_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_1gr_example.txt -------------------------------------------------------------------------------- /mbe_1gr_plots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_1gr_plots.m -------------------------------------------------------------------------------- /mbe_1gr_summary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_1gr_summary.m -------------------------------------------------------------------------------- /mbe_2gr_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_2gr_example.m -------------------------------------------------------------------------------- /mbe_2gr_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_2gr_example.txt -------------------------------------------------------------------------------- /mbe_2gr_plots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_2gr_plots.m -------------------------------------------------------------------------------- /mbe_2gr_summary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_2gr_summary.m -------------------------------------------------------------------------------- /mbe_acfPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_acfPlot.m -------------------------------------------------------------------------------- /mbe_concChains.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_concChains.m -------------------------------------------------------------------------------- /mbe_diagMCMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_diagMCMC.m -------------------------------------------------------------------------------- /mbe_gammaShRa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_gammaShRa.m -------------------------------------------------------------------------------- /mbe_gelmanPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_gelmanPlot.m -------------------------------------------------------------------------------- /mbe_hdi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_hdi.m -------------------------------------------------------------------------------- /mbe_mcmcDensPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_mcmcDensPlot.m -------------------------------------------------------------------------------- /mbe_plotData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_plotData.m -------------------------------------------------------------------------------- /mbe_plotPairs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_plotPairs.m -------------------------------------------------------------------------------- /mbe_plotPost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_plotPost.m -------------------------------------------------------------------------------- /mbe_restructChains.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_restructChains.m -------------------------------------------------------------------------------- /mbe_summary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_summary.m -------------------------------------------------------------------------------- /mbe_tracePlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsWinter/matlab-bayesian-estimation/HEAD/mbe_tracePlot.m --------------------------------------------------------------------------------