timprove y limits of erosion rate plot - 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 a502a369387a0c5d2f24b524a22103768d7d9d49
 (DIR) parent c084f8ce65fca2d1e2ad435fd7873341341383b1
 (HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
       Date:   Thu, 19 Nov 2015 10:37:13 +0100
       
       improve y limits of erosion rate plot
       
       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@@ -491,7 +491,8 @@ ylabel('Erosion rate [m/Myr]')
        axis tight
        xlim([min(xs), max(xs)])
        ylims = get(gca,'YLim');
       -ylim([ylims(1)*0.97, ylims(2)*1.03])
       +dy = ylims(2)-ylims(1);
       +ylim([ylims(1) - 0.2*dy, ylims(2) + 0.2*dy])
        
        % deglaciation timing
        plot([t_degla_med, t_degla_med], get(gca,'YLim'), 'k--');