annotate matlab/aggplot.m @ 75:8a146c651475 tip

Added ready made bbl
author samer
date Fri, 01 Jun 2012 16:19:55 +0100
parents 6464cf684717
children
rev   line source
samer@20 1 % aggplot - Do plots for all data lumped together
samer@20 2 function aggplot(files,varargin)
samer@20 3 plots=drumplots(cellcat(1,map(@read_shift,cellfilt(@finite_shift,files))),varargin{:});
samer@20 4 zipwith(@(f,p)paperplot(f,p,'epsfile',sprintf('agg%d.eps',f),varargin{:}), ...
samer@20 5 num2cell(40+(1:length(plots))), ...
samer@20 6 plots);
samer@20 7 end
samer@20 8
samer@20 9