diff scripts/statistics/distributions/chi2rnd.m @ 8050:dac919d9c418

chi2rnd.m: fix missing semicolon
author John W. Eaton <jwe@octave.org>
date Fri, 22 Aug 2008 14:42:12 -0400 (2008-08-22)
parents a1dbe9d80eee
children 9a05d76e5291
line wrap: on
line diff
--- a/scripts/statistics/distributions/chi2rnd.m
+++ b/scripts/statistics/distributions/chi2rnd.m
@@ -68,7 +68,7 @@
      if (find (!(n > 0) | !(n < Inf)))
        rnd = NaN * ones (sz);
      else
-       rnd = 2 * randg(n/2, sz)
+       rnd = 2 * randg(n/2, sz);
      endif
   else
     [retval, n, dummy] = common_size (n, ones (sz));