# HG changeset patch # User jwe # Date 1114752001 0 # Node ID 84b72a402b86d3823964b41681752be5ff920c44 # Parent 7b95f7fdf175156c51fd28ca6e21dffd0b9cc895 [project @ 2005-04-29 05:18:39 by jwe] diff -r 7b95f7fdf175 -r 84b72a402b86 src/load-save.cc --- a/src/load-save.cc Fri Apr 29 04:47:55 2005 +0000 +++ b/src/load-save.cc Fri Apr 29 05:20:01 2005 +0000 @@ -702,7 +702,7 @@ else if (argv[i] == "-ascii" || argv[i] == "-a") { warning ("the meaning of this option will change in a future"); - warning ("version of Octave to be compatible with @sc{Matlab}."); + warning ("version of Octave to be compatible with Matlab."); warning ("To keep the meaning of your code the same across"); warning ("this change, use the -text option instead."); @@ -1088,7 +1088,7 @@ else if (argv[i] == "-ascii" || argv[i] == "-a") { warning ("the meaning of this option will change in a future"); - warning ("version of Octave to be compatible with @sc{Matlab}."); + warning ("version of Octave to be compatible with Matlab."); warning ("To keep the meaning of your code the same across"); warning ("this change, use the -text option instead."); diff -r 7b95f7fdf175 -r 84b72a402b86 test/octave.test/linalg/expm-2.m --- a/test/octave.test/linalg/expm-2.m Fri Apr 29 04:47:55 2005 +0000 +++ b/test/octave.test/linalg/expm-2.m Fri Apr 29 05:20:01 2005 +0000 @@ -1,4 +1,4 @@ arg = [1, 1; 0, 1]; result = [2.718281828459045, 2.718281828459045; 0.000000000000000, 2.718281828459045]; -all (all (abs (expm (arg) - result) < 2*eps)) +all (all (abs (expm (arg) - result) < 4*eps))