diff scripts/statistics/base/statistics.m @ 10549:95c3e38098bf

Untabify .m scripts
author Rik <code@nomad.inbox5.com>
date Fri, 23 Apr 2010 11:28:50 -0700
parents eb63fbe60fab
children cab3b148d4e4
line wrap: on
line diff
--- a/scripts/statistics/base/statistics.m	Fri Apr 23 11:13:48 2010 -0700
+++ b/scripts/statistics/base/statistics.m	Fri Apr 23 11:28:50 2010 -0700
@@ -50,8 +50,8 @@
     endif
   else
     if (! (isscalar (dim) && dim == round (dim))
-	&& dim > 0
-	&& dim < (nd + 1))
+        && dim > 0
+        && dim < (nd + 1))
       error ("statistics: dim must be an integer and valid dimension");
     endif
   endif
@@ -63,7 +63,7 @@
   emp_inv = quantile (X, [0.25; 0.5; 0.75], dim, 7);
 
   S = cat (dim, min (X, [], dim), emp_inv, max (X, [], dim), mean (X, dim),
-	   std (X, [], dim), skewness (X, dim), kurtosis (X, dim));
+           std (X, [], dim), skewness (X, dim), kurtosis (X, dim));
 
 endfunction