diff scripts/statistics/base/skewness.m @ 11587:c792872f8942

all script files: untabify and strip trailing whitespace
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:35:29 -0500
parents fd0a3ac60b0e
children d0b799dafede
line wrap: on
line diff
--- a/scripts/statistics/base/skewness.m	Thu Jan 20 17:24:59 2011 -0500
+++ b/scripts/statistics/base/skewness.m	Thu Jan 20 17:35:29 2011 -0500
@@ -80,7 +80,7 @@
   ind = find (s > 0);
   x = sum (x .^ 3, dim);
   retval(ind) = x(ind) ./ (c * s(ind) .^ 3);
-  
+
 endfunction
 
 %!assert(skewness ([-1,0,1]), 0);