changeset 24122:813b1385f85d

test: increase tolerance on ComplexMatrix test * CMatrix.cc: Increase tolerance on test of ComplexMatrix multiplication with random values that occasionally fail.
author Mike Miller <mtmiller@octave.org>
date Mon, 02 Oct 2017 17:38:30 -0700
parents e2dc75c661ac
children 16c8ec7f0867
files liboctave/array/CMatrix.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/array/CMatrix.cc	Mon Oct 02 16:25:58 2017 -0700
+++ b/liboctave/array/CMatrix.cc	Mon Oct 02 17:38:30 2017 -0700
@@ -3472,7 +3472,7 @@
 %!assert ([rv*M;rv*M], [rv;rv]*M, 1e-14)
 %!assert ([rv*M.';rv*M.'], [rv;rv]*M.', 1e-14)
 %!assert ([rv*M';rv*M'], [rv;rv]*M', 1e-14)
-%!assert (2*rv*cv, [rv,rv]*[cv;cv], 1e-14)
+%!assert (2*rv*cv, [rv,rv]*[cv;cv], 2e-14)
 
 */