tchange order of subplots - cosmo - front and backend for Markov-Chain Monte Carlo inversion of cosmogenic nuclide concentrations
HTML git clone git://src.adamsgaard.dk/cosmo
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit ea84ddf6f923f2a038ee1471b6ff314691d698b9
DIR parent 90a08fd5437d58ec31858ed31eabf20ea247bd19
HTML Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Fri, 23 Oct 2015 12:19:57 +0200
change order of subplots
Diffstat:
M matlab/generate_plots.m | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
DIR diff --git a/matlab/generate_plots.m b/matlab/generate_plots.m
t@@ -186,7 +186,8 @@ fh = [fh;figure('visible', show_figures)];
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 = (iwalk-1)*M + i1;
+ isub = (i1-1)*M + iwalk;
%i1, M, iwalk, Nwalkers, isub
%subplot(5,2,isub)
subplot(M,Nwalkers,isub)