diff arrows/@plotter/plotter.m @ 37:beb8a3f4a345

Renamed prefs to options throughout.
author samer
date Mon, 28 Jan 2013 10:52:11 +0000
parents 3f77126f7b5f
children
line wrap: on
line diff
--- a/arrows/@plotter/plotter.m	Thu Jan 24 14:51:23 2013 +0000
+++ b/arrows/@plotter/plotter.m	Mon Jan 28 10:52:11 2013 +0000
@@ -16,7 +16,7 @@
 % the handle graphics object returned by the plotting function.
 
 function o=plotter(varargin)
-	s.opts=prefs('dlim',[],'dom',[],'ylim',[],'xlim',[],'plotfn',@plot,'args',{},'transpose',0,varargin{:});
+	s.opts=options('dlim',[],'dom',[],'ylim',[],'xlim',[],'plotfn',@plot,'args',{},'transpose',0,varargin{:});
 	if isempty(s.opts.ylim), s.opts.ylim=s.opts.dlim; end
 	o=class(s,'plotter',agraph(1,s.opts));
 end