# HG changeset patch # User jwe # Date 1114711049 0 # Node ID 1c5fe2690d2c351e63ab8cf82745d82dc64a37f6 # Parent aaa6df7aa13a6106c1a781a35c1b4e4b05d991e6 [project @ 2005-04-28 17:57:29 by jwe] diff -r aaa6df7aa13a -r 1c5fe2690d2c scripts/ChangeLog --- a/scripts/ChangeLog Thu Apr 28 15:01:34 2005 +0000 +++ b/scripts/ChangeLog Thu Apr 28 17:57:29 2005 +0000 @@ -1,3 +1,24 @@ +2005-04-28 toni saarela + + * statistics/tests/anova.m: Compute total_mean as mean of all + data, not mean of group_mean. + +2005-04-28 John W. Eaton + + * startup/local-rcfile: New file. + * startup/main-rcfile: Rename from startup/octaverc. + * startup/Makefile.in (SOURCES): Add inputrc to the list. + (install install-strip): Install main-rcfile in $(fcnfiledir)/startup. + Install local-rcfile in $(localfcnfiledir)/startup. + +2005-04-28 Keith Goodman + + * startup/inputrc: New file. + * startup/octaverc: Configure readline using inputrc from + startupfiledir. + * startup/Makefile.in (install, install-strip): Install octaverc + in $(fcnfiledir)/startup. + 2005-04-27 John W. Eaton * optimization/qp.m: Define n_in after removing -Inf bounds from Ain. diff -r aaa6df7aa13a -r 1c5fe2690d2c scripts/statistics/tests/anova.m --- a/scripts/statistics/tests/anova.m Thu Apr 28 15:01:34 2005 +0000 +++ b/scripts/statistics/tests/anova.m Thu Apr 28 17:57:29 2005 +0000 @@ -80,7 +80,7 @@ endif - total_mean = mean (group_mean); + total_mean = mean (y); SSB = sum (group_count .* (group_mean - total_mean) .^ 2); SST = sumsq (reshape (y, n, 1) - total_mean); SSW = SST - SSB;