changeset 17583:4cb05034f1c6

skewness.m: Use long-form of 'end' keyword in cset ab75e72c5b36. * scripts/statistics/base/skewness.m: Replace 'end' with 'endif'.
author Rik <rik@octave.org>
date Sun, 06 Oct 2013 19:48:25 -0700
parents 7004c733412f
children 6278085742b7
files scripts/statistics/base/skewness.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/statistics/base/skewness.m	Sun Oct 06 16:16:36 2013 -0700
+++ b/scripts/statistics/base/skewness.m	Sun Oct 06 19:48:25 2013 -0700
@@ -94,7 +94,7 @@
     flag = double (flag);
     if (flag != 0 && flag != 1)
       error ("skewness: FLAG must be 0 or 1");
-    end
+    endif
   endif
 
   nd = ndims (x);
@@ -123,7 +123,7 @@
       y *= sqrt (n * (n - 1)) / (n - 2);
     else
       y(:) = NaN;
-    end
+    endif
   endif
 
 endfunction