diff liboctave/CMatrix.cc @ 10352:a3635bc1ea19

remove Array2
author Jaroslav Hajek <highegg@gmail.com>
date Tue, 23 Feb 2010 16:12:27 +0100
parents 12884915a8e4
children b47ab50a6aa8
line wrap: on
line diff
--- a/liboctave/CMatrix.cc	Tue Feb 23 14:15:34 2010 +0100
+++ b/liboctave/CMatrix.cc	Tue Feb 23 16:12:27 2010 +0100
@@ -2394,7 +2394,8 @@
 {
 
   ComplexMatrix tmp (b);
-  return solve (typ, tmp, info, rcon, sing_handler, transt).column(static_cast<octave_idx_type> (0));
+  tmp = solve (typ, tmp, info, rcon, sing_handler, true, transt);
+  return tmp.column(static_cast<octave_idx_type> (0));
 }
 
 ComplexMatrix