diff scripts/plot/axis.m @ 11191:01ddaedd6ad5

Reverse changeset b1f4bdc276b6. Use all lower case for "uniformoutput" option.
author Rik <octave@nomad.inbox5.com>
date Thu, 04 Nov 2010 12:18:08 -0700
parents 5b48695f3c13
children 6c8791cb35b1
line wrap: on
line diff
--- a/scripts/plot/axis.m	Wed Nov 03 17:37:00 2010 -0700
+++ b/scripts/plot/axis.m	Thu Nov 04 12:18:08 2010 -0700
@@ -322,8 +322,8 @@
     if (iscell (data))
       data = data (find (! cellfun (@isempty, data)));
       if (! isempty (data))
-        lims_min = min (cellfun (@min, cellfun (@min, data, 'UniformOutput', false)(:))); 
-        lims_max = max (cellfun (@max, cellfun (@max, data, 'UniformOutput', false)(:))); 
+        lims_min = min (cellfun (@min, cellfun (@min, data, 'uniformoutput', false)(:))); 
+        lims_max = max (cellfun (@max, cellfun (@max, data, 'uniformoutput', false)(:))); 
         lims = [lims_min, lims_max]; 
       else
         lims = [0, 1];