]> gitweb.michael.orlitzky.com - octave.git/commitdiff
Squelch output from partition().
authorMichael Orlitzky <michael@orlitzky.com>
Sat, 15 Sep 2012 03:50:11 +0000 (23:50 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 15 Sep 2012 03:50:11 +0000 (23:50 -0400)
partition.m

index ac616cf5891d6f0e7c2f3d4322b8ab22b383e705..96ded5e194103e5a5ecaf92b0203ad74b97a87f7 100644 (file)
@@ -22,7 +22,7 @@ function [p,delta] = partition(integerN, a, b)
   ## We don't use abs() here because `b` might be less than `a`. In that
   ## case, we want delta negative so that when we add it to `a`, we move
   ## towards `b`.
-  delta = (b - a)/integerN
+  delta = (b - a)/integerN;
 
-  p = [a : delta : b]
+  p = [a : delta : b];
 end