changeset 10534:eb55e736060e

colorbar.m: Allow 'peer' option to be specified.
author Ben Abbott <bpabbott@mac.com>
date Mon, 19 Apr 2010 20:57:41 -0400
parents f094ac9bc93e
children 3f973f6c841c
files scripts/ChangeLog scripts/plot/colorbar.m
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Apr 19 15:31:49 2010 +0200
+++ b/scripts/ChangeLog	Mon Apr 19 20:57:41 2010 -0400
@@ -1,5 +1,6 @@
 2010-04-19  Ben Abbott <bpabbott@mac.com>
 
+	* /plot/colorbar.m: Allow 'peer' option to be specified.
 	* /plot/colorbar.m: Consistent treatment of plotboxaspectratio, and
 	add listener for plotboxaspectratiomode.
 	* /plot/axis.m: Consistent treatment of plotboxaspectratio.
--- a/scripts/plot/colorbar.m	Mon Apr 19 15:31:49 2010 +0200
+++ b/scripts/plot/colorbar.m	Mon Apr 19 20:57:41 2010 -0400
@@ -61,9 +61,9 @@
 	if (i > nargin)
 	  error ("colorbar: missing axes handle after \"peer\"");
 	else
-	  ax = vargin{i++}
+	  ax = varargin{i++};
 	  if (!isscalar (ax) || ! ishandle (ax)
-	      || strcmp (get (ax, "type"), "axes"))
+	      || ! strcmp (get (ax, "type"), "axes"))
 	    error ("colorbar: expecting an axes handle following \"peer\"");
 	  endif
 	endif
@@ -355,7 +355,7 @@
 %! clf
 %! n = 64; x = kron (1:n,ones(n,1)); x = abs(x - x.'); 
 %! imagesc(x)
-%! colorbar("northoutside");
+%! colorbar("peer", gca (), "northoutside");
 
 %!demo
 %! clf