# HG changeset patch # User jwe # Date 1197321171 0 # Node ID 96f86c256ca019471992d5b9af68860ee79fbc76 # Parent 72b5e1701da2fd9c7e3e57dfd6f1ffc6fe705899 [project @ 2007-12-10 21:12:51 by jwe] diff -r 72b5e1701da2 -r 96f86c256ca0 scripts/ChangeLog --- a/scripts/ChangeLog Mon Dec 10 21:04:33 2007 +0000 +++ b/scripts/ChangeLog Mon Dec 10 21:12:51 2007 +0000 @@ -1,5 +1,8 @@ 2007-12-10 John W. Eaton + * plot/fplot.m: In N is not specified, increase initial number of + points from 3 and 5 to 5 and 8. + * signal/detrend.m: Move tests here from test/test_signal.m. Loosen tolerance on first test from 10*eps to 20*eps. diff -r 72b5e1701da2 -r 96f86c256ca0 scripts/plot/fplot.m --- a/scripts/plot/fplot.m Mon Dec 10 21:04:33 2007 +0000 +++ b/scripts/plot/fplot.m Mon Dec 10 21:12:51 2007 +0000 @@ -73,10 +73,10 @@ if (floor(n) != n) tol = n; - x0 = linspace (limits(1), limits(2), 3)'; + x0 = linspace (limits(1), limits(2), 5)'; y0 = feval (fn, x0); err0 = Inf; - n = 5; + n = 8; x = linspace (limits(1), limits(2), n)'; y = feval (fn, x);