changeset 17783:eca761671f16

SparseCmplxCHOL.cc, SparsedbleCHOL.cc: removed spchol2inv from error msg
author Andreas Weber <andy.weber.aw@gmail.com>
date Mon, 28 Oct 2013 21:11:45 +0100
parents 136a9e27256e
children 7ae9bc04ec07
files liboctave/numeric/SparseCmplxCHOL.cc liboctave/numeric/SparsedbleCHOL.cc
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/numeric/SparseCmplxCHOL.cc	Mon Oct 28 15:32:20 2013 -0400
+++ b/liboctave/numeric/SparseCmplxCHOL.cc	Mon Oct 28 21:11:45 2013 +0100
@@ -61,10 +61,10 @@
         }
       else
         (*current_liboctave_error_handler)
-          ("spchol2inv requires triangular matrix");
+          ("U must be a triangular matrix");
     }
   else
-    (*current_liboctave_error_handler) ("spchol2inv requires square matrix");
+    (*current_liboctave_error_handler) ("U must be a square matrix");
 
   return retval;
 }
--- a/liboctave/numeric/SparsedbleCHOL.cc	Mon Oct 28 15:32:20 2013 -0400
+++ b/liboctave/numeric/SparsedbleCHOL.cc	Mon Oct 28 21:11:45 2013 +0100
@@ -61,10 +61,10 @@
         }
       else
         (*current_liboctave_error_handler)
-          ("spchol2inv requires triangular matrix");
+          ("U must be a triangular matrix");
     }
   else
-    (*current_liboctave_error_handler) ("spchol2inv requires square matrix");
+    (*current_liboctave_error_handler) ("U must be a square matrix");
 
   return retval;
 }