# HG changeset patch # User John W. Eaton # Date 1226596230 18000 # Node ID 9a05d76e529105d4abf434c6ea17ced3b0db287f # Parent c374691576f6206788add8ab35358c4b86fcc75a chi2rnd.m: fix missing semicolon diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -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 --git a/scripts/statistics/distributions/chi2rnd.m b/scripts/statistics/distributions/chi2rnd.m --- a/scripts/statistics/distributions/chi2rnd.m +++ b/scripts/statistics/distributions/chi2rnd.m @@ -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