tfix subplot selection equation - cosmo - front and backend for Markov-Chain Monte Carlo inversion of cosmogenic nuclide concentrations
(HTM) git clone git://src.adamsgaard.dk/cosmo
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit a0b34d9dea120b697868fbd2aef1004cb4b6497e
(DIR) parent ea84ddf6f923f2a038ee1471b6ff314691d698b9
(HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Fri, 23 Oct 2015 12:42:23 +0200
fix subplot selection equation
Diffstat:
M matlab/generate_plots.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/matlab/generate_plots.m b/matlab/generate_plots.m
t@@ -187,7 +187,7 @@ for i1 = 1:M % for each model parameter
for iwalk=1:min(4,Nwalkers) % for each walker
%isub = (i1-1)*4 + iwalk;
%isub = (iwalk-1)*M + i1;
- isub = (i1-1)*M + iwalk;
+ isub = (i1-1)*Nwalkers + iwalk;
%i1, M, iwalk, Nwalkers, isub
%subplot(5,2,isub)
subplot(M,Nwalkers,isub)