Mercurial > hg > ishara
annotate arrows/@ainfig/construct.m @ 0:672052bd81f8
Initial partial import.
author | samer |
---|---|
date | Wed, 19 Dec 2012 22:38:28 +0000 |
parents | |
children |
rev | line source |
---|---|
samer@0 | 1 function u=construct(s,sizes_in) |
samer@0 | 2 figure(fig(s)); |
samer@0 | 3 if ~isempty(s.opts.colormap), colormap(s.opts.colormap); end |
samer@0 | 4 %if isempty(s.opts.xlim) && numel(dom)>1, s.opts.xlim=[dom(1),dom(end)]; end |
samer@0 | 5 %if ~isempty(s.opts.ylim), ylim(s.opts.ylim); end |
samer@0 | 6 %if ~isempty(s.opts.xlim), xlim(s.opts.xlim); end |
samer@0 | 7 %if isfield(s.opts,'ylabel'), ylabel(s.opts.ylabel); end |
samer@0 | 8 %if isfield(s.opts,'xlabel'), xlabel(s.opts.xlabel); end |
samer@0 | 9 |
samer@0 | 10 u=mkunit(s); |
samer@0 | 11 u.sizes_out = {}; |
samer@0 | 12 if autoflush(s), u.process =@proc_flush; |
samer@0 | 13 else u.process=@proc_noflush; end |
samer@0 | 14 u.dispose = @()clf(fig(s)); |
samer@0 | 15 |
samer@0 | 16 function proc_flush(x), figure(fig(s)); s.fn(x); drawnow; end |
samer@0 | 17 function proc_noflush(x), figure(fig(s)); s.fn(x); end |
samer@0 | 18 end |