diff liboctave/dMatrix.cc @ 2964:0a2551ec7004

[project @ 1997-05-12 07:26:50 by jwe]
author jwe
date Mon, 12 May 1997 07:26:51 +0000
parents 3241d0057e78
children a6a00badcc12
line wrap: on
line diff
--- a/liboctave/dMatrix.cc
+++ b/liboctave/dMatrix.cc
@@ -1517,13 +1517,13 @@
 
 // unary operations
 
-Matrix
+boolMatrix
 Matrix::operator ! (void) const
 {
   int nr = rows ();
   int nc = cols ();
 
-  Matrix b (nr, nc);
+  boolMatrix b (nr, nc);
 
   for (int j = 0; j < nc; j++)
     for (int i = 0; i < nr; i++)