diff arrows/@plotter/plotter.m @ 3:3f77126f7b5f

First major revision of sequence library, now using classdef form, STILL A BIT BROKEN!
author samer
date Wed, 09 Jan 2013 22:22:21 +0000
parents 672052bd81f8
children beb8a3f4a345
line wrap: on
line diff
--- a/arrows/@plotter/plotter.m	Sat Dec 22 16:17:51 2012 +0000
+++ b/arrows/@plotter/plotter.m	Wed Jan 09 22:22:21 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',{},'tranpose',0,varargin{:});
+	s.opts=prefs('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