comparison matlab/indplots.m @ 36:ec7d64c0ae44

Work on section 2 and 3A.
author samer
date Wed, 14 Mar 2012 23:04:12 +0000
parents 6464cf684717
children
comparison
equal deleted inserted replaced
35:194c7ec7e35d 36:ec7d64c0ae44
1 function indplots(files_shifts,varargin) 1 function indplots(files_shifts,varargin)
2 opts=prefs('print',0,varargin{:}); 2 opts=prefs('print',0,varargin{:});
3 for i=1:length(files_shifts) 3 for i=1:length(files_shifts)
4 if finite_shift(files_shifts{i}) 4 if exist(files_shifts{i}{1},'file') && finite_shift(files_shifts{i})
5 fileplot(files_shifts{i},'basename',sprintf('plots/file%d',i),opts); 5 fileplot(files_shifts{i},'basename',sprintf('plots/file%d',i),opts);
6 end 6 end
7 end 7 end