# HG changeset patch # User John W. Eaton # Date 1226596230 18000 # Node ID 9a05d76e529105d4abf434c6ea17ced3b0db287f # Parent c374691576f6206788add8ab35358c4b86fcc75a chi2rnd.m: fix missing semicolon diff -r c374691576f6 -r 9a05d76e5291 scripts/ChangeLog --- a/scripts/ChangeLog Wed Nov 12 21:36:39 2008 +0000 +++ b/scripts/ChangeLog Thu Nov 13 12:10:30 2008 -0500 @@ -1,3 +1,8 @@ +2008-11-13 John W. Eaton + + * statistics/distributions/chi2rnd.m: Fix another missing semicolon. + From sven.mattisson@insatnet.nu. + 2008-11-12 David Bateman * plot/__quiver__.m: Only autoscale if more than one element to diff -r c374691576f6 -r 9a05d76e5291 scripts/statistics/distributions/chi2rnd.m --- a/scripts/statistics/distributions/chi2rnd.m Wed Nov 12 21:36:39 2008 +0000 +++ b/scripts/statistics/distributions/chi2rnd.m Thu Nov 13 12:10:30 2008 -0500 @@ -84,7 +84,7 @@ k = find ((n > 0) & (n < Inf)); if (any (k)) - rnd(k) = 2 * randg(n(k)/2, size(k)) + rnd(k) = 2 * randg(n(k)/2, size(k)); endif endif