changeset 26649:46fa64c0ae40 stable

splinefit.m: Relax tolerance of BIST tests (bug #55587). * splinefit.m: Relax tolerance of BIST tests from 15*eps to 20*eps.
author Rik <rik@octave.org>
date Wed, 30 Jan 2019 16:30:24 -0800
parents bed1d5d6dc5a
children 903c9a39e051
files scripts/polynomial/splinefit.m
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/polynomial/splinefit.m	Sat Jan 19 01:30:47 2019 -0500
+++ b/scripts/polynomial/splinefit.m	Wed Jan 30 16:30:24 2019 -0800
@@ -235,10 +235,10 @@
 
 %!test
 %! y = interp1 (xb, yb, x, "linear");
-%! assert (ppval (splinefit (x, y, xb, "order", 1), x), y, 15 * eps ());
+%! assert (ppval (splinefit (x, y, xb, "order", 1), x), y, 20 * eps ());
 %!test
 %! y = interp1 (xb, yb, x, "spline");
-%! assert (ppval (splinefit (x, y, xb, "order", 3), x), y, 15 * eps ());
+%! assert (ppval (splinefit (x, y, xb, "order", 3), x), y, 20 * eps ());
 %!test
 %! y = interp1 (xb, yb, x, "spline");
-%! assert (ppval (splinefit (x, y, xb), x), y, 15 * eps ());
+%! assert (ppval (splinefit (x, y, xb), x), y, 20 * eps ());