diff scripts/general/cell2mat.m @ 11190:b1f4bdc276b6

Use CamelCase for 'UniformOutput' option to cellfun.
author Rik <octave@nomad.inbox5.com>
date Wed, 03 Nov 2010 17:37:00 -0700
parents 5a55773fcaa9
children 01ddaedd6ad5
line wrap: on
line diff
--- a/scripts/general/cell2mat.m
+++ b/scripts/general/cell2mat.m
@@ -70,7 +70,7 @@
       endif
       xdim = [1:idim-1, idim+1:nd];
       cc = num2cell (c, xdim);
-      c = cellfun (@cat, {idim}, cc{:}, "uniformoutput", false);
+      c = cellfun (@cat, {idim}, cc{:}, "UniformOutput", false);
     endfor
     m = c{1};
   endif