diff scripts/general/repmat.m @ 8507:cadc73247d65

style fixes
author John W. Eaton <jwe@octave.org>
date Tue, 13 Jan 2009 14:08:36 -0500
parents 49901b624316
children dee629f14bfa
line wrap: on
line diff
--- a/scripts/general/repmat.m	Tue Jan 13 11:56:00 2009 -0500
+++ b/scripts/general/repmat.m	Tue Jan 13 14:08:36 2009 -0500
@@ -75,7 +75,7 @@
       aidx = [aidx, ones(1,length(idx)-length(aidx))];
     endif
     cidx = cell (1, length (aidx));
-    for i=1:length(aidx)
+    for i = 1:length (aidx)
       cidx{i} = kron (ones (1, idx(i)), 1:aidx(i));
     endfor
     x = a (cidx{:});