diff scripts/statistics/base/values.m @ 8506:bc982528de11

comment style fixes
author John W. Eaton <jwe@octave.org>
date Tue, 13 Jan 2009 11:56:00 -0500
parents a1dbe9d80eee
children eb63fbe60fab
line wrap: on
line diff
--- a/scripts/statistics/base/values.m
+++ b/scripts/statistics/base/values.m
@@ -40,7 +40,8 @@
   endif
 
   i = any (isnan (x));
-  x = x(find(!isnan (x)));      # HACK!
+  ## HACK!
+  x = x(find(!isnan (x)));
   n = length (x);
   x = reshape (x, n, 1);
   s = sort (x);