diff liboctave/CmplxCHOL.cc @ 7559:07522d7dcdf8

fixes to QR and Cholesky updating code
author Jaroslav Hajek <highegg@gmail.com>
date Wed, 05 Mar 2008 14:23:26 -0500
parents 40574114c514
children efccca5f2ad7
line wrap: on
line diff
--- a/liboctave/CmplxCHOL.cc	Wed Mar 05 04:44:49 2008 -0500
+++ b/liboctave/CmplxCHOL.cc	Wed Mar 05 14:23:26 2008 -0500
@@ -167,7 +167,7 @@
   if (R.is_square ()) 
     chol_mat = R;
   else
-    (*current_liboctave_error_handler) ("chol2inv requires square matrix");
+    (*current_liboctave_error_handler) ("CHOL requires square matrix");
 }
 
 void
@@ -205,7 +205,7 @@
 				 tmp.fortran_vec (), w, info));
     }
   else
-    (*current_liboctave_error_handler) ("CHOL update dimension mismatch");
+    (*current_liboctave_error_handler) ("CHOL downdate dimension mismatch");
 
   return info;
 }