changeset 20751:a0655d18c9cc stable

lscov.m: Increase tolerance of BIST test to 2*eps. * lscov.m: Increase tolerance of BIST test to 2*eps.
author Rik <rik@octave.org>
date Tue, 24 Nov 2015 19:58:10 -0800
parents fdffc955b4ed
children b4f5962b3373 f819397c0bc1
files scripts/statistics/base/lscov.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/statistics/base/lscov.m	Tue Nov 24 17:21:47 2015 -0800
+++ b/scripts/statistics/base/lscov.m	Tue Nov 24 19:58:10 2015 -0800
@@ -172,7 +172,7 @@
 %! assert(mseg, 0.0019, 1E-4);
 %! y2 = [y 2*y];
 %! [b2, se_b2, mse2, S2] = lscov (X, y2);
-%! assert(b2, [b 2*b], eps)
+%! assert(b2, [b 2*b], 2*eps)
 %! assert(se_b2, [se_b 2*se_b], eps)
 %! assert(mse2, [mse 4*mse], eps)
 %! assert(S2(:, :, 1), S, eps)