changeset 5396:983bf1f4bab5

[project @ 2005-06-17 04:10:53 by jwe]
author jwe
date Fri, 17 Jun 2005 04:10:53 +0000
parents 8db4eb48f546
children b12c0f920da0
files test/octave.test/poly/polyfit-1.m test/octave.test/poly/polyfit-2.m
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/test/octave.test/poly/polyfit-1.m	Thu Jun 16 20:19:19 2005 +0000
+++ b/test/octave.test/poly/polyfit-1.m	Fri Jun 17 04:10:53 2005 +0000
@@ -1,2 +1,2 @@
 x = [-2, -1, 0, 1, 2];
-all (all (abs (polyfit (x, x.^2+x+1, 2) - [1; 1; 1]) < sqrt (eps)))
+all (all (abs (polyfit (x, x.^2+x+1, 2) - [1, 1, 1]) < sqrt (eps)))
--- a/test/octave.test/poly/polyfit-2.m	Thu Jun 16 20:19:19 2005 +0000
+++ b/test/octave.test/poly/polyfit-2.m	Fri Jun 17 04:10:53 2005 +0000
@@ -1,2 +1,2 @@
 x = [-2, -1, 0, 1, 2];
-all (all (abs (polyfit (x, x.^2+x+1, 3) - [0; 1; 1; 1]) < sqrt (eps)))
+all (all (abs (polyfit (x, x.^2+x+1, 3) - [0, 1, 1, 1]) < sqrt (eps)))