samer@0: function u=construct(s,sizes_in) samer@0: figure(fig(s)); samer@0: if ~isempty(s.opts.colormap), colormap(s.opts.colormap); end samer@0: %if isempty(s.opts.xlim) && numel(dom)>1, s.opts.xlim=[dom(1),dom(end)]; end samer@0: %if ~isempty(s.opts.ylim), ylim(s.opts.ylim); end samer@0: %if ~isempty(s.opts.xlim), xlim(s.opts.xlim); end samer@0: %if isfield(s.opts,'ylabel'), ylabel(s.opts.ylabel); end samer@0: %if isfield(s.opts,'xlabel'), xlabel(s.opts.xlabel); end samer@0: samer@0: u=mkunit(s); samer@0: u.sizes_out = {}; samer@0: if autoflush(s), u.process =@proc_flush; samer@0: else u.process=@proc_noflush; end samer@0: u.dispose = @()clf(fig(s)); samer@0: samer@0: function proc_flush(x), figure(fig(s)); s.fn(x); drawnow; end samer@0: function proc_noflush(x), figure(fig(s)); s.fn(x); end samer@0: end