changeset 8050:dac919d9c418

chi2rnd.m: fix missing semicolon
author John W. Eaton <jwe@octave.org>
date Fri, 22 Aug 2008 14:42:12 -0400
parents e36e891f2349
children 36a485f7f335
files scripts/ChangeLog scripts/statistics/distributions/chi2rnd.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Thu Aug 21 15:32:50 2008 -0400
+++ b/scripts/ChangeLog	Fri Aug 22 14:42:12 2008 -0400
@@ -1,3 +1,7 @@
+2008-08-22  John W. Eaton  <jwe@octave.org>
+
+	* statistics/distributions/chi2rnd.m: Fix missing semicolon.
+
 2008-08-21  John W. Eaton  <jwe@octave.org>
 
 	* plot/__go_draw_axes__.m: Fix test for have_data.
--- a/scripts/statistics/distributions/chi2rnd.m	Thu Aug 21 15:32:50 2008 -0400
+++ b/scripts/statistics/distributions/chi2rnd.m	Fri Aug 22 14:42:12 2008 -0400
@@ -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));